-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "apprun",
"version": "6.0.0-rc.1",
"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",
"exports": {
".": {
"types": "./apprun.d.ts",
"import": "./esm/apprun.js",
"require": "./dist/apprun.js"
},
"./jsx-runtime": {
"types": "./apprun.d.ts",
"import": "./jsx-runtime.js",
"require": "./jsx-runtime.js"
},
"./createState": {
"types": "./apprun.d.ts",
"import": "./esm/createState.js",
"require": "./dist/createState.js"
},
"./apprun-html": {
"types": "./apprun.d.ts",
"import": "./esm/apprun-html.js",
"require": "./dist/apprun-html.js"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"apprun.d.ts",
"cli/",
"dist/",
"esm/",
"jsx-runtime.js",
"jsx-runtime.js.map",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"sideEffects": [
"./dist/apprun.js",
"./dist/apprun-html.js",
"./dist/apprun-code.js",
"./dist/apprun-play.js",
"./src/apprun-html.ts",
"./src/apprun-code.tsx",
"./esm/apprun.js",
"./esm/apprun-html.js",
"./esm/apprun-code.js",
"./esm/apprun-play.js",
"./jsx-runtime.js"
],
"bin": {
"apprun": "cli/index.js"
},
"scripts": {
"build": "tsc -p src && rollup -c && webpack --mode production",
"postbuild": "node scripts/sync-pages-assets.js",
"prepack": "npm run build",
"lint": "eslint .",
"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": "^1.0.0",
"@types/jest": "^29.5.14",
"eslint": "^10.5.0",
"immer": "^10.1.1",
"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",
"typescript-eslint": "^8.61.1",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"commander": "^14.0.0",
"property-information": "^7.1.0"
},
"peerDependencies": {
"immer": "^10.1.1"
},
"peerDependenciesMeta": {
"immer": {
"optional": true
}
}
}