-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 865 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 865 Bytes
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": "lion-example",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"build": "node export-tokens/build.js",
"demo:dev": "wds --open --watch --node-resolve --app-index app/index.html",
"demo:build": "rimraf dist && rollup -c rollup.config.js",
"demo:start": "http-server -o -c-1 dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@lion/ui": "^0.7.7",
"@tokens-studio/sd-transforms": "^1.3.0",
"lit": "^3.1.0",
"style-dictionary": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@web/dev-server": "^0.4.6",
"@web/rollup-plugin-html": "^2.3.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.21.3",
"rollup-plugin-import-css": "^3.5.1"
}
}