-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 925 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 925 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
26
27
28
{
"name": "governance-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo root for governance-sdk and governance-sdk-platform. This package is not published — see packages/governance for the core SDK.",
"repository": {
"type": "git",
"url": "https://github.com/lua-ai-global/governance"
},
"license": "MIT",
"workspaces": [
"packages/governance",
"packages/governance-platform"
],
"scripts": {
"build": "npm run build -w packages/governance && npm run build -w packages/governance-platform",
"test": "npm test -w packages/governance && npm test -w packages/governance-platform",
"lint": "npm run lint -w packages/governance && npm run lint -w packages/governance-platform",
"sync-readme": "node scripts/sync-readme.mjs"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"satori": "^0.26.0"
}
}