-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "web-polyfill",
"version": "0.8.0",
"license": "AGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "An automatic CDN service for Web polyfills, which is based on TypeScript, Node.js & UnPkg.",
"keywords": [
"web",
"polyfill",
"cdn",
"auto",
"service",
"typescript",
"javascript"
],
"homepage": "https://polyfill.web-cell.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/Web-polyfill.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/Web-polyfill/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@tech_query/node-toolkit": "^2.0.0-alpha.0",
"dom-renderer": "^2.5.1",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"happy-dom": "^15.11.6",
"koapache": "^2.2.2",
"marked": "^15.0.0",
"tslib": "^2.8.1",
"undici": "^6.21.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.6",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "~5.6.3"
},
"resolutions": {
"marked": "$marked",
"@tech_query/node-toolkit": "$@tech_query/node-toolkit"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && tsc --noEmit",
"generate": "rm -rf public/ && tsx source/",
"start": "web-server public/ -p 8080"
}
}