-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
60
{
"name": "apprun-site",
"version": "1.3.36",
"description": "AppRun Site is a framework for building AppRun applications.",
"main": "index.js",
"type": "module",
"bin": "apprun-site-cli.js",
"scripts": {
"test": "node --test --watch",
"lint": "eslint src",
"dev": "node apprun-site-cli dev demo",
"start": "npm --prefix ./demo start",
"serve": "node apprun-site-cli serve demo",
"build:server": "node apprun-site-cli build demo --server-only",
"build:client": "node apprun-site-cli build demo --client-only",
"build": "node apprun-site-cli build demo -c",
"render": "node apprun-site-cli build demo -cr"
},
"keywords": [
"AppRun",
"AppRun Site",
"Application Framework"
],
"author": "Yiyi Sun <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yysun/apprun-site.git"
},
"bugs": {
"url": "https://github.com/yysun/apprun-site/issues"
},
"homepage": "https://github.com/yysun/apprun-site#readme",
"dependencies": {
"chalk": "5.3.0",
"chokidar": "^4.0.1",
"commander": "^12.1.0",
"compression": "^1.7.4",
"degit": "^2.8.4",
"esbuild": "^0.24.0",
"express": "^4.21.0",
"glob": "^11.0.0",
"inquirer": "^11.1.0",
"jsdom": "^25.0.1",
"markdown-it": "^14.1.0",
"postcss-load-config": "^6.0.1",
"winston": "^3.14.2",
"ws": "^8.18.0"
},
"peerDependencies": {
"apprun": "^3.33.9",
"postcss": "^8.4.47"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"eslint": "^9.11.1"
}
}