-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.81 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.81 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
73
74
75
76
77
78
{
"name": "@yieldxyz/sdk",
"version": "0.0.6",
"description": "Yield.xyz SDK",
"type": "module",
"scripts": {
"lint": "biome check . && tsc -b",
"format": "biome format --write .",
"build": "pnpm run generate-api && rslib build",
"generate-api": "orval --config ./orval.config.ts",
"prepare": "husky",
"release": "changeset publish",
"version": "changeset version",
"example:evm-enter-or-exit": "tsx --env-file='.env' example/evm-enter-or-exit.ts"
},
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./msw": {
"types": "./dist/src/api/index.msw.d.ts",
"import": "./dist/index.msw.js",
"default": "./dist/index.msw.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/stakekit/sdk"
},
"files": [
"dist",
"package.json",
"README.md"
],
"keywords": [
"stakekit",
"yieldxyz",
"sdk"
],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@faker-js/faker": "^9",
"msw": "^2"
},
"peerDependenciesMeta": {
"@faker-js/faker": {
"optional": true
},
"msw": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@faker-js/faker": "^10.4.0",
"@rslib/core": "^0.21.0",
"@types/node": "^25.6.0",
"bignumber.js": "^10.0.2",
"husky": "^9.1.7",
"msw": "^2.13.2",
"orval": "^8.7.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"viem": "^2.47.16"
}
}