-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 805 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 805 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
{
"name": "simpler-grants-protocol",
"private": true,
"version": "0.1.0",
"workspaces": [
"lib/**"
],
"description": "",
"main": "index.js",
"scripts": {
"ci:core": "pnpm --filter @common-grants/core run ci",
"ci:changelog-emitter": "pnpm --filter typespec-versioning-changelog run ci",
"ci:cli": "pnpm --filter @common-grants/cli run ci",
"ci:sdk": "pnpm --filter @common-grants/sdk run ci",
"ci:website": "pnpm --filter website run ci",
"ci": "pnpm run ci:core && pnpm run ci:changelog-emitter && pnpm run ci:cli && pnpm run ci:sdk && pnpm run ci:website"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0"
}
}