forked from linode/design-language-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.45 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.4.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",
"dependencies": {
"@tokens-studio/sd-transforms": "^0.15.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-dictionary": "4.0.0-prerelease.25"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.6",
"@storybook/react": "~7.6.4",
"@storybook/react-vite": "^7.6.4",
"@storybook/test": "^7.6.6",
"@storybook/theming": "~7.6.4",
"@types/node": "^18.16.1",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-storybook": "^0.6.15",
"prettier": "^2.8.8",
"storybook": "^7.6.6",
"terser": "^5.17.1",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^5.1.4"
},
"volta": {
"node": "18.14.1"
},
"packageManager": "yarn@4.1.1"
}