-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "@serendie/design-token",
"description": "Design tokens as part of Serendie Design System by Mitsubishi Electric",
"license": "MIT",
"version": "1.4.5",
"type": "module",
"scripts": {
"build": "tsx buildTokens.ts",
"sync-json-to-figma": "sync-to-figma",
"ci:sync-json-to-figma": "sync-to-figma --silent",
"release": "release-it"
},
"devDependencies": {
"@serendie/style-dictionary-formatter": "^1.0.2",
"release-it": "^17.11.0",
"style-dictionary": "^3.9.2",
"style-dictionary-utils": "^2.0.7"
},
"dependencies": {
"@serendie/figma-utils": "^0.1.1",
"tsx": "^4.7.2",
"typescript": "^5.5.3"
},
"exports": {
".": {
"import": "./dist/tokens.js",
"types": "./dist/tokens.d.ts"
},
"./panda": {
"import": "./dist/panda-tokens.js",
"types": "./dist/panda-tokens.d.ts"
},
"./token-list": {
"import": "./dist/token-list.js",
"types": "./dist/token-list.d.ts"
},
"./tokens.css": "./dist/tokens.css"
},
"files": [
"dist"
]
}