-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"author": "CESS <tech@cess.network>",
"bugs": "https://github.com/CESSProject/api/issues",
"engines": {
"node": ">=18.14"
},
"homepage": "https://github.com/CESSProject/api#readme",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/CESSProject/api.git"
},
"sideEffects": false,
"type": "module",
"version": "16.4.6",
"versions": {
"git": "16.4.6",
"npm": "16.4.6"
},
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"build": "pnpm --recursive --workspace-concurrency=1 run build",
"build:api": "pnpm --filter @cessnetwork/api run build",
"build:types": "pnpm --filter @cessnetwork/types run build",
"build:util": "pnpm --filter @cessnetwork/util run build",
"dev": "pnpm --recursive --parallel run dev",
"test": "pnpm --recursive run test",
"test:api": "pnpm --filter @cessnetwork/api run test",
"clean": "pnpm --recursive run clean",
"publish:all": "pnpm --recursive publish",
"changeset:autogenerate": "node .changesets/changesets-autogenerate.mjs",
"release": "pnpm changeset version && pnpm changeset publish"
},
"resolutions": {
"typescript": "^5.5.4"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7"
}
}