-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 838 Bytes
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
{
"name": "ping",
"version": "1.3.0",
"private": true,
"license": "Apache License 2.0",
"author": {
"name": "chianyin",
"email": "whereismoney@qq.com"
},
"engines": {
"node": ">= 22"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:gh-pages": "vite build --base=/ping/",
"preview": "vite preview",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "DEBUG=eslint:cli-engine eslint --fix .",
"lint:check": "DEBUG=eslint:cli-engine eslint ."
},
"devDependencies": {
"@vitejs/plugin-legacy": "^6.0.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.2",
"jquery": "^3.7.1",
"less": "^4.3.0",
"normalize.css": "^8.0.1",
"prettier": "^3.5.3",
"vite": "^6.2.6",
"vite-plugin-html": "^3.2.2"
}
}