-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 KB
/
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
32
33
34
35
36
37
38
{
"name": "typescript-rollup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc:watch": "tsc --watch",
"start:single": "concurrently --kill-others --names tsc,web-dev-server \"npm run tsc:watch\" \"web-dev-server --app-index index.html --node-resolve --open --watch\"",
"start": "concurrently --kill-others --names tsc,web-dev-server \"npm run tsc:watch\" \"web-dev-server --config web-dev-server.config.js\"",
"build": "rimraf dist && tsc && rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luixaviles/typescript-rollup.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/luixaviles/typescript-rollup/issues"
},
"homepage": "https://github.com/luixaviles/typescript-rollup#readme",
"devDependencies": {
"@open-wc/building-rollup": "^1.9.4",
"@rollup/plugin-json": "^4.1.0",
"@web/dev-server": "0.0.29",
"@web/dev-server-rollup": "^0.3.2",
"concurrently": "^5.3.0",
"deepmerge": "^4.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"typescript": "^4.1.3"
},
"dependencies": {
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
}