-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.28 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
{
"name": "extensions-monorepo",
"version": "0.1.0",
"description": "TimeRank — 浏览器扩展 Monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint packages/",
"lint:fix": "eslint packages/ --fix",
"format": "prettier --check \"packages/**/*.ts\"",
"format:fix": "prettier --write \"packages/**/*.ts\"",
"build:moyu": "npm run build -w packages/moyu-tab",
"build:community": "npm run build -w packages/reading-community",
"build:all": "npm run build:moyu && npm run build:community",
"typecheck": "npm run typecheck -w packages/moyu-tab && npm run typecheck -w packages/reading-community",
"pack:moyu": "node scripts/pack-zip.cjs moyu-tab",
"pack:community": "node scripts/pack-zip.cjs reading-community",
"pack:all": "npm run pack:moyu && npm run pack:community",
"icons": "node scripts/generate-icons.js",
"doc:check": "node scripts/check-doc-links.mjs"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/chrome": "^0.0.260",
"esbuild": "^0.28.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^16.5.0",
"prettier": "^3.8.5",
"typescript": "^5.5.0",
"typescript-eslint": "^8.62.0"
}
}