-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 KB
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": "curator-bookmarks",
"private": true,
"version": "1.4.21",
"description": "Curator — Chrome 本地书签管理扩展",
"license": "MIT",
"keywords": [
"chrome-extension",
"bookmarks",
"manifest-v3",
"typescript"
],
"homepage": "https://github.com/sy0u1ti/curator-bookmarks#readme",
"bugs": {
"url": "https://github.com/sy0u1ti/curator-bookmarks/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sy0u1ti/curator-bookmarks.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"lint": "npm run typecheck",
"build": "vite build",
"check:version": "node scripts/check-version.mjs",
"validate": "npm run typecheck && npm test && npm run check:version && npm run build",
"pack:zip": "npm run validate && node scripts/pack-release.mjs",
"typecheck": "tsc --noEmit",
"test": "npm run test:build && node --test .tmp-test/tests/*.test.js",
"test:build": "node -e \"require('node:fs').rmSync('.tmp-test', { recursive: true, force: true })\" && tsc -p tsconfig.test.json"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.4.0",
"@types/chrome": "^0.0.280",
"@types/node": "^25.6.0",
"playwright": "^1.59.1",
"typescript": "^5.6.3",
"vite": "6.4.2"
},
"dependencies": {
"pinyin-pro": "^3.28.1"
}
}