-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "version-polling",
"version": "1.2.6",
"description": "一个用于实时检测 web 应用更新的 JavaScript 库",
"engines": {
"node": ">=14"
},
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/version-polling.esm.js",
"main": "dist/version-polling.js",
"unpkg": "dist/version-polling.min.js",
"files": [
"dist"
],
"keywords": [
"web",
"update",
"upgrade",
"check",
"polling",
"version"
],
"author": "JoeshuTT",
"homepage": "https://github.com/JoeshuTT/version-polling/#readme",
"license": "MIT",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"rollup": "^3.18.0",
"rollup-plugin-dts": "^5.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}