-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "xiangqi-analysis-web",
"type": "module",
"version": "1.0.0",
"description": "Online xiangqi endgame analysis application",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "pnpm build && vite preview",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md,vue}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md,vue}\"",
"prepare": "husky",
"lint": "eslint ",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"@techstark/opencv-js": "^4.10.0-release.1",
"ml-kmeans": "^6.0.0",
"pinia": "^2.2.7",
"vue": "^3.5.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^6.0.1",
"vite-plugin-cdn2": "^1.1.0",
"vite-plugin-markdown": "^2.2.0"
},
"packageManager": "[email protected]",
"homepage": "https://ifwu.github.io/xiangqi-analysis/",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,scss,md,vue}": [
"prettier --write"
]
}
}