-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 604 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 604 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "githubtree-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=githubtree-web",
"build": "npm run build --workspace=githubtree-web",
"preview": "npm run preview --workspace=githubtree-web",
"generate": "node tools/generate-seo.js",
"deploy": "npm run build && npm run generate",
"copy-assets": "cp README.md packages/core/ && cp LICENSE packages/core/",
"publish-core": "npm run copy-assets && npm publish --workspace=gh-tree --access public"
},
"dependencies": {
"p-limit": "^7.3.0"
}
}