This repository was archived by the owner on Mar 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.11 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
{
"name": "@aibtc/agent-tools",
"version": "0.0.1",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@bitflowlabs/core-sdk": "^2.4.0",
"@faktoryfun/core-sdk": "^0.3.8",
"@jingcash/core-sdk": "^0.1.10",
"@stacks/blockchain-api-client": "^8.13.4",
"@stacks/bns": "^7.2.0",
"@stacks/connect": "^8.2.2",
"@stacks/encryption": "^7.2.0",
"@stacks/stacking": "^7.2.0",
"@stacks/stacks-blockchain-api-types": "^7.14.1",
"@stacks/transactions": "^7.2.0",
"@stacks/wallet-sdk": "^7.2.0",
"alex-sdk": "^3.2.1",
"bitflow-sdk": "^1.6.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dexterity-sdk": "0.8.28",
"dotenv": "^17.2.3",
"eta": "^3.5.0",
"ora": "^8.2.0",
"stxcity-sdk": "^1.0.10",
"tslib": "^2.8.1"
},
"devDependencies": {
"@aibtc/types": "^0.30.0",
"@types/bun": "^1.3.1",
"@types/node": "^24.10.0",
"bun-types": "^1.3.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "echo \"No tests specified - skipping tests\" && exit 0",
"version:patch": "npm version patch -m \"chore: release v%s\"",
"version:minor": "npm version minor -m \"chore: release v%s\"",
"version:major": "npm version major -m \"chore: release v%s\"",
"release:patch": "npm run build && npm run version:patch && npm publish && git push --follow-tags",
"release:minor": "npm run build && npm run version:minor && npm publish && git push --follow-tags",
"release:major": "npm run build && npm run version:major && npm publish && git push --follow-tags",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build && npm test"
}
}