2026-01-21 23:09:33 +08:00
|
|
|
{
|
|
|
|
|
"name": "browser-bookmark",
|
|
|
|
|
"private": true,
|
|
|
|
|
"workspaces": [
|
|
|
|
|
"apps/*",
|
|
|
|
|
"packages/*"
|
|
|
|
|
],
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"concurrently": "^9.1.2"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "concurrently -n server,web -c cyan,magenta \"npm run -w apps/server dev\" \"npm run -w apps/web dev\"",
|
|
|
|
|
"dev:web": "npm run -w apps/web dev",
|
|
|
|
|
"dev:server": "npm run -w apps/server dev",
|
|
|
|
|
"dev:extension": "npm run -w apps/extension dev",
|
|
|
|
|
"build": "npm run -w apps/server build && npm run -w apps/web build && npm run -w apps/extension build",
|
|
|
|
|
"test": "npm run -w apps/server test && npm run -w apps/web test && npm run -w apps/extension test",
|
|
|
|
|
"lint": "npm run -w apps/server lint && npm run -w apps/web lint && npm run -w apps/extension lint",
|
|
|
|
|
"spec:lint": "openspec validate --specs --no-interactive",
|
|
|
|
|
"spec:validate": "openspec validate --specs --strict --no-interactive"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=22"
|
|
|
|
|
}
|
|
|
|
|
}
|