-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 966 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@typescene/webapp",
"version": "0.0.0",
"private": true,
"description": "Typescene framework",
"author": "Jelmer Cormont",
"license": "MIT",
"publishConfig": {
"tag": "next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typescene/typescene-webapp.git"
},
"bugs": {
"url": "https://github.com/typescene/typescene-webapp/issues"
},
"homepage": "http://typescene.dev/",
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"files": [
"dist",
"index.js",
"index.d.ts",
"setup"
],
"scripts": {
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist && tsc -p src --declaration",
"build": "tsc -p src --removeComments",
"watch": "tsc -p src -w"
},
"dependencies": {
"typescene": "2.20",
"tslib": "^1.10.0"
},
"devDependencies": {
"rimraf": "^2.6.3",
"typescript": "^3.5.3"
}
}