-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 819 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 819 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
29
30
31
32
{
"name": "@mppsol/sdk",
"private": true,
"version": "0.0.0",
"description": "TypeScript SDK monorepo for MPP.sol — core types, HTTP server middleware, and client agent.",
"license": "Apache-2.0",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20"
},
"homepage": "https://mppsol.org",
"repository": {
"type": "git",
"url": "git+https://github.com/mppsol/sdk.git"
},
"bugs": {
"url": "https://github.com/mppsol/sdk/issues"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"clean": "pnpm -r clean",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm -r build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}