-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.23 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
{
"name": "@web-cell/home",
"version": "2.0.0",
"description": "Official site of WebCell",
"keywords": [
"WebCell",
"homepage",
"official",
"website"
],
"author": "shiy2008@gmail.com",
"license": "AGPL-3.0",
"private": true,
"homepage": "https://web-cell.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/EasyWebApp.github.io.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/EasyWebApp.github.io/issues"
},
"dependencies": {
"boot-cell": "^2.0.0-rc.19",
"cell-router": "^4.0.3",
"classnames": "^2.5.1",
"dom-renderer": "^2.6.2",
"github-web-widget": "^4.0.0",
"koajax": "^3.1.2",
"marked": "^16.3.0",
"mobx": "^6.15.0",
"prismjs": "^1.30.0",
"web-cell": "^3.2.1",
"web-utility": "^4.6.1"
},
"devDependencies": {
"@parcel/config-default": "~2.16.0",
"@parcel/packager-raw-url": "~2.16.0",
"@parcel/transformer-less": "~2.16.0",
"@parcel/transformer-typescript-tsc": "~2.16.0",
"@parcel/transformer-webmanifest": "~2.16.0",
"@types/node": "^22.18.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"parcel": "~2.16.0",
"prettier": "^3.6.2",
"typescript": "~5.9.2",
"workbox-cli": "^7.3.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"lmdb",
"msgpackr-extract"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true
},
"lint-staged": {
"*.{html,md,less,json,yml,js,ts,tsx}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"clean": "rm -rf .parcel-cache/ dist/",
"start": "npm run clean && parcel source/index.html --open",
"pack-dist": "parcel build source/index.html --public-url .",
"pack-sw": "rm -f dist/sw.js.map && workbox generateSW",
"build": "npm run clean && npm run pack-dist && npm run pack-sw"
}
}