-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 969 Bytes
/
package.json
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
{
"name": "@secretkeylabs/stacks-tools",
"version": "0.6.0",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"check-format": "prettier --check .",
"format": "prettier --write .",
"check-types": "tsc --noEmit",
"check-exports": "attw --pack .",
"ci": "bun run check-types && bun run check-format && bun run build && bun run check-exports"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
"@types/bun": "latest",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@stacks/blockchain-api-client": "^8.2.1",
"@stacks/transactions": "^7.0.0",
"valibot": "^0.42.1"
},
"dependencies": {
"exponential-backoff": "3.1.1"
},
"license": "MIT"
}