-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 945 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 945 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
32
33
34
35
36
{
"name": "workshop_lit",
"version": "0.0.0",
"description": "Workshop Lit",
"main": "dist/index.js",
"scripts": {
"build": "npm run rollup",
"rollup": "rollup -c",
"lint": "eslint src/**/*.ts --fix",
"start_web_server": "web-dev-server --node-resolve --open --watch",
"start": "rollup -c --watch"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ghau/alertation.git"
},
"author": "aallier",
"license": "ISC",
"bugs": {
"url": "https://github.com/aallier/workshop_lit/issues"
},
"homepage": "https://github.com/aallier/workshop_lit#readme",
"dependencies": {
"lit": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@web/dev-server": "^0.3.3",
"rollup": "^4.1.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}