-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 822 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 822 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
{
"name": "oxygen-mdc",
"version": "1.3.0",
"description": "Light-weight material design web components",
"author": "Simon Fuhrmann",
"license": "BSD-2-Clause",
"type": "module",
"keywords": [
"webcomponents",
"material"
],
"repository": {
"type": "git",
"url": "https://github.com/simonfuhrmann/oxygen-mdc"
},
"scripts": {
"demo": "npm run build-demo -- --servedir=demo",
"build-demo": "esbuild demo/oxy-demo.ts --bundle --minify --outfile=demo/oxy-demo.mjs",
"deploy-demo": "npm run build-demo && mkdir -p dist; cp demo/index.html demodd/oxy-demo.mjs dist/",
"prepublish": "tsc",
"clean": "rm -rf oxy-*.js oxy-*.d.ts dist/ utils/"
},
"dependencies": {
"lit": "^3.3.0"
},
"devDependencies": {
"esbuild": "0.25.5",
"typescript": "^5.8.3"
}
}