-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "version-polling",
"version": "1.3.2",
"description": "A JavaScript library for web application updates",
"keywords": [
"version",
"web",
"update",
"upgrade",
"check",
"polling"
],
"homepage": "https://github.com/JoeshuTT/version-polling/#readme",
"bugs": {
"url": "https://github.com/JoeshuTT/version-polling/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoeshuTT/version-polling.git"
},
"author": "Joe Shu <[email protected]>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"test": "vitest",
"changeset": "changeset",
"bump": "zx scripts/bump.mjs",
"prepare": "pnpm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@changesets/cli": "^2.27.12",
"@rslib/core": "^0.3.0",
"@types/node": "^22.8.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"zx": "^8.3.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}