初始化项目
This commit is contained in:
25
package.json
Normal file
25
package.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user