-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 810 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 810 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
{
"type": "module",
"scripts": {
"build:ytt": "ytt -f mkdocs.template.yml -f redirects > mkdocs.yml",
"build:scss": "sass --style=compressed src/mwc-theme.scss overrides/assets/stylesheets/mwc-theme.css",
"build:mwc": "rollup -c rollup.config.mwc.js",
"build:all": "npm run build:scss && npm run build:mwc && npm run build:ytt",
"build": "npm run build:all && mkdocs build",
"start": "npm run build:all && mkdocs serve --livereload --clean"
},
"dependencies": {
"@material/web": "^2.4.1",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"prettier": "^3.7.4",
"rollup": "^4.59.0",
"sass": "^1.93.3",
"typescript": "^5.9.3"
}
}