-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.46 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@linode/design-language-system",
"version": "2.8.0",
"type": "module",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*/index.js",
"./themes/*": "./dist/themes/*/index.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
],
"themes/dark": [
"./dist/themes/dark/index.d.ts"
],
"themes/densedDark": [
"./dist/themes/densedDark/index.d.ts"
],
"themes/densedLight": [
"./dist/themes/densedLight/index.d.ts"
]
}
},
"scripts": {
"clean": "rm -rf dist",
"generate": "yarn clean && ts-node --esm style-dictionary/build.ts",
"storybook": "storybook dev -p 6007",
"test": "echo \"Error: no test specified\" && exit 1",
"build-storybook": "storybook build"
},
"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": {
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-vite": "^8.3.0",
"@storybook/test": "^8.3.0",
"@storybook/theming": "^8.3.0",
"@tokens-studio/sd-transforms": "1.2.0",
"@types/node": "^18.16.1",
"@types/react": "^18.3.5",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"storybook": "^8.3.0",
"style-dictionary": "4.0.1",
"terser": "^5.32.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vite": "^5.4.6"
},
"volta": {
"node": "18.18.0"
},
"packageManager": "[email protected]"
}