-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 920 Bytes
/
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
{
"name": "@dev/gui",
"private": true,
"version": "1.0.0",
"types": "dist/index",
"main": "dist/index",
"module": "dist/index",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run compile",
"clean": "rimraf dist && rimraf *.tsbuildinfo",
"precompile": "npm run compile:assets",
"compile": "npm run compile:source",
"compile:source": "tsc -b tsconfig.build.json",
"compile:assets": "build-tools -c process-assets --package core",
"watch:assets": "build-tools -c process-assets --package core --watch",
"watch:source": "tsc -b tsconfig.build.json -w",
"watch": "build-tools -c dev-watch --packages \"gui\" -wa"
},
"devDependencies": {
"@dev/core": "^1.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"sideEffects": false,
"dependencies": {}
}