-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.74 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
{
"name": "check-dist-update",
"description": "A simple tool to check dist update",
"private": false,
"version": "0.1.2",
"type": "module",
"license": "MIT",
"author": {
"name": "SWSJTX",
"email": "[email protected]",
"url": "https://github.com/SWSJTX"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SWSJTX/check-dist-update.git"
},
"bugs": {
"url": "https://github.com/SWSJTX/check-dist-update/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"auto",
"checkUpdate",
"dist",
"check-dist-update"
],
"files": [
"dist",
"src",
"index.d.ts",
"README.md",
"README-zh_CH.md",
"LICENSE"
],
"main": "./dist/check-update.umd.cjs",
"module": "./dist/check-update.js",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./dist/check-update.js",
"require": "./dist/check-update.umd.cjs"
},
"scripts": {
"build": "vite build",
"lint": "eslint --ext .js,.cjs --fix ./src",
"format": "prettier --write ./src",
"prepare": "husky install",
"release": "standard-version"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@rollup/plugin-babel": "^6.0.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"standard-version": "^9.5.0",
"vite": "^5.0.10"
},
"lint-staged": {
".{js,cjs,ts}": [
"pnpm run lint",
"pnpm run format"
]
},
"engines": {
"node": ">= 18.12.0"
},
"packageManager": "[email protected]"
}