-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
60
61
62
{
"name": "apprun",
"version": "3.38.0",
"description": "JavaScript library that has Elm inspired architecture, event pub-sub and components",
"main": "dist/apprun.js",
"module": "esm/apprun.js",
"types": "apprun.d.ts",
"bin": {
"apprun": "cli/index.js"
},
"scripts": {
"build": "tsc -p src && rollup -c && webpack --mode production",
"test": "jest",
"jest": "jest --watch",
"jest:debug": "node --inspect node_modules/.bin/jest --runInBand",
"start": "webpack serve --mode development",
"rollup": "tsc -p src && rollup -c"
},
"keywords": [
"JavaScript",
"TypeScript",
"model-view-update",
"elm architecture",
"virtual DOM",
"apprun",
"app.run",
"app.start"
],
"author": "Yiyi Sun <yiyisun@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yysun/apprun.git"
},
"bugs": {
"url": "https://github.com/yysun/apprun/issues"
},
"homepage": "https://github.com/yysun/apprun#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-loader": "^0.5.7",
"lit": "^3.3.1",
"marked": "^16.0.0",
"rollup": "^4.45.1",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"commander": "^14.0.0",
"immer": "^10.1.1",
"property-information": "^7.1.0"
}
}