-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 748 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 748 Bytes
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
{
"name": "keeppage",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:demo:html": "npm run build:demo:html -w @keeppage/web",
"dev:api": "npm run dev -w @keeppage/api",
"dev:web:mock": "npm run dev:mock -w @keeppage/web",
"dev:demo": "npm run dev:demo -w @keeppage/web",
"dev:web": "npm run dev -w @keeppage/web",
"dev:extension": "npm run dev -w @keeppage/extension",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"@types/node": "^24.7.2",
"typescript": "^5.9.3"
}
}