-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.82 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@interest-protocol/sdk-monorepo",
"version": "0.0.1",
"private": true,
"description": "Interest Protocol SDK monorepo",
"main": "index.js",
"scripts": {
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"clean": "pnpm -r clean",
"build:all": "pnpm --filter \"@interest-protocol/*\" --stream build",
"exec:script": "tsx ./scripts/set-up/exec-script.ts",
"create:package": "tsx ./scripts/set-up/create-package.ts",
"publish:pkg": "./publish-package.sh"
},
"workspaces": {
"packages": [
"packages/*",
"scripts/*",
"tools/*"
]
},
"keywords": [
"sdk",
"interest-protocol",
"monorepo"
],
"author": "Interest Protocol",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^22.19.7",
"dotenv": "^16.6.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"rollup": "^4.56.0",
"tiny-invariant": "^1.3.3",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/interest-protocol/sdk-monorepo.git"
},
"type": "module",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=16.13.0"
},
"pnpm": {
"overrides": {
"valibot": "^1.2.0",
"esbuild": "^0.25.0",
"lodash-es": "^4.17.23"
}
}
}