-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.8 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.8 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
{
"name": "tvkit",
"version": "0.22.0",
"description": "Proxy to run a modern dev server in old browsers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bfanger/tvkit.git"
},
"type": "module",
"bin": {
"tvkit": "bin/tvkit.js"
},
"scripts": {
"dev": "pm2-dev bin/tvkit.js -- serve --port 2016 --browser tizen2016",
"dev:latest": "pm2-dev bin/tvkit.js -- serve --browser=\"last 1 chrome versions\"",
"dev:tizen2017": "pm2-dev bin/tvkit.js -- serve --port 2017 --browser tizen2017",
"dev:ie11": "pm2-dev bin/tvkit.js -- serve --port 2011 --browser ie11",
"lint": "concurrently -c \"#c596c7\",\"#3074c0\",\"#7c7cea\" --kill-others-on-fail \"npm:lint:*\"",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint --max-warnings=0 src",
"format": "eslint --fix src && prettier --write src",
"test": "vitest run",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"lint-staged": {
"*.(c)?js": [
"eslint --max-warnings 0 --no-ignore"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/babel__core": "^7.20.5",
"@types/caniuse-lite": "^1.0.5",
"@types/express": "^5.0.6",
"@types/yargs": "^17.0.35",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.2.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/runtime": "^7.29.2",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-terser": "^1.0.0",
"@ungap/is-connected": "^0.2.0",
"abortcontroller-polyfill": "^1.7.8",
"acorn": "^8.16.0",
"acorn-walk": "^8.3.5",
"browserslist": "^4.28.1",
"caniuse-lite": "^1.0.30001781",
"core-js": "^3.49.0",
"core-js-compat": "^3.49.0",
"cross-browser-polyfill": "^1.0.5",
"custom-event-polyfill": "^1.0.7",
"es6-proxy-polyfill": "^2.1.1",
"express": "^5.2.1",
"fast-text-encoding": "^1.0.6",
"http-proxy-middleware": "^3.0.5",
"intersection-observer": "^0.12.2",
"magic-string": "^0.30.21",
"node-before-polyfill": "^1.0.0",
"node-html-parser": "^7.1.0",
"postcss": "^8.5.8",
"postcss-preset-env": "^11.2.0",
"postcss-selector-parser": "^7.1.1",
"regenerator-runtime": "^0.14.1",
"rollup": "^4.60.0",
"systemjs": "^6.15.1",
"terser": "^5.46.1",
"unorm": "^1.6.0",
"web-streams-polyfill": "^4.2.0",
"whatwg-fetch": "^3.6.20",
"yargonaut": "^1.1.4",
"yargs": "^18.0.0"
}
}