-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
31 lines (31 loc) · 957 Bytes
/
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
{
"name": "figma-tokens-multifile-multitheme-example",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"transform-light": "npx token-transformer data tokens/light.json global,light,base/radii,base/size,base/typography dark --expandShadow",
"transform-dark": "npx token-transformer data tokens/dark.json global,dark,base/radii,base/size,base/typography light --expandShadow",
"transform": "yarn transform-light && yarn transform-dark",
"build": "node ./script/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheeMattOliver/figma-tokens-multifile-multitheme-example.git"
},
"keywords": [
"figma-tokens",
"design-systems",
"design-tokens",
"color",
"spacing",
"typography"
],
"author": "",
"license": "MIT",
"dependencies": {
"@changesets/cli": "^2.22.0",
"style-dictionary": "^3.7.0",
"token-transformer": "^0.0.23"
}
}