-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.92 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dom-proxy",
"version": "2.3.0",
"description": "Develop declarative UI with (opt-in) automatic dependency tracking without boilerplate code, VDOM, nor compiler.",
"keywords": [
"DOM",
"proxy",
"reactive",
"declarative",
"dependency tracking",
"state management",
"typescript",
"lightweight"
],
"author": "Beeno Tung <[email protected]> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/dom-proxy.git"
},
"homepage": "https://github.com/beenotung/dom-proxy#readme",
"bugs": {
"url": "https://github.com/beenotung/dom-proxy/issues"
},
"main": "index.js",
"types": "./index.d.ts",
"files": [
"*.js",
"*.d.ts",
"demo"
],
"scripts": {
"demo": "run-p demo:*",
"demo:quick-example": "esbuild --bundle demo/quick-example.ts --outfile=demo/quick-example.js",
"demo:index": "esbuild --bundle demo/index.ts --outfile=demo/index.js",
"demo:signup": "esbuild --bundle demo/signup.ts --outfile=demo/signup.js",
"demo:hybrid": "esbuild --bundle demo/hybrid.ts --outfile=demo/hybrid.js",
"demo:style": "esbuild --bundle demo/style.ts --outfile=demo/style.js",
"dev": "npm run demo:quick-example -- --watch",
"upload": "npm run demo && surge demo https://dom-proxy.surge.sh",
"format": "prettier --write . && format-json-cli",
"test": "tsc --noEmit",
"clean": "rimraf *.js *.d.ts *.tsbuildinfo demo/*.js",
"build": "npm run tsc && npm run esbuild",
"tsc": "npm run clean && tsc -p .",
"esbuild": "esbuild --bundle browser.ts --outfile=browser.js"
},
"devDependencies": {
"@beenotung/tslib": "^24.2.1",
"@types/node": "^18.14.5",
"esbuild": "^0.17.10",
"format-json-cli": "^1.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"surge": "^0.23.1",
"typescript": "^4.9.5"
}
}