-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cell-router",
"version": "3.0.1",
"license": "LGPL-3.0",
"description": "Web Component Router based on WebCell & MobX",
"keywords": [
"Web",
"component",
"router",
"WebCell",
"MobX"
],
"author": "[email protected]",
"homepage": "https://web-cell.dev/cell-router/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/cell-router.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/cell-router/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"dependencies": {
"@swc/helpers": "^0.5.15",
"dom-renderer": "^2.6.0",
"mobx": ">=6.11",
"regenerator-runtime": "^0.14.1",
"urlpattern-polyfill": "^10.0.0",
"web-cell": "^3.0.3",
"web-utility": "^4.4.2"
},
"devDependencies": {
"@parcel/config-default": "~2.13.0",
"@parcel/packager-ts": "~2.13.0",
"@parcel/transformer-less": "~2.13.0",
"@parcel/transformer-typescript-tsc": "~2.13.0",
"@parcel/transformer-typescript-types": "~2.13.0",
"@types/jest": "^29.5.14",
"dotenv": "^16.4.5",
"element-internals-polyfill": "^1.3.12",
"fs-match": "^1.7.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"koapache": "^2.2.2",
"lint-staged": "^15.2.10",
"parcel": "~2.13.0",
"prettier": "^3.3.3",
"process": "^0.11.10",
"puppeteer-core": "^23.8.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.11",
"typedoc-plugin-mdn-links": "^3.3.8",
"typescript": "~5.6.3"
},
"scripts": {
"prepare": "husky && app-find chrome msedge firefox -c",
"preview": "cd test/ && rimraf ../.parcel-cache/ dist/ && parcel --open",
"pack-preview": "cd test/ && rimraf ../.parcel-cache/ dist/ && parcel build --public-url=. --dist-dir=../docs/preview/",
"pack-dist": "rimraf dist/ && parcel build source/index.ts",
"test": "lint-staged && npm run pack-preview && jest --forceExit",
"pack-docs": "rimraf docs/ && typedoc source/",
"build": "npm run pack-dist && npm run pack-docs && npm run pack-preview",
"help": "npm run pack-docs && web-server docs/ -o",
"prepublishOnly": "npm test && npm run build"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"jest": {
"preset": "ts-jest",
"testTimeout": 10000
},
"lint-staged": {
"*.{html,md,json,ts,tsx}": "prettier --write"
}
}