-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@linode/design-language-system",
"version": "5.3.2",
"type": "module",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./tokens": "./dist/tokens.js",
"./themes/*/tokens": "./dist/themes/*/tokens.js",
"./*": "./dist/*/index.js",
"./themes/*": "./dist/themes/*/index.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
],
"themes/dark": [
"./dist/themes/dark/index.d.ts"
]
}
},
"scripts": {
"clean": "rm -rf dist",
"generate": "yarn clean && tsx style-dictionary/build.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linode/design-language-system.git"
},
"keywords": [],
"author": "",
"files": [
"dist"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/linode/design-language-system/issues"
},
"homepage": "https://github.com/linode/design-language-system#readme",
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@tokens-studio/sd-transforms": "^2.0.3",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"style-dictionary": "^5.1.1",
"terser": "^5.44.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"volta": {
"node": "22.0.0"
},
"packageManager": "yarn@4.1.1"
}