-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 KB
/
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
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
{
"name": "dexterity-sdk",
"version": "0.8.27",
"description": "SDK and CLI for interacting with Dexterity AMM protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dexterity": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "tsx --no-deprecation src/cli.ts",
"dev:watch": "tsx watch src/cli.ts",
"dev:debug": "node --inspect-brk -r tsx/cjs src/cli.ts",
"build": "tsc",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run test && npm run build",
"publish:check": "git diff-index --quiet HEAD || (echo 'Working directory not clean. Please commit or stash changes first.' && exit 1)",
"publish:next": "npm run publish:check && npm publish --tag next && git push && git push --tags",
"publish:latest": "npm run publish:check && npm publish --tag next && npm dist-tag add dexterity-sdk@$(npm pkg get version | sed 's/\"//g') latest && git push && git push --tags",
"cli": "node --no-deprecation ./dist/cli.js"
},
"keywords": [
"defi",
"amm",
"stacks",
"blockchain",
"typescript",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"@stacks/blockchain-api-client": "8.4.0",
"@stacks/common": "7.0.2",
"@stacks/connect": "^7.10.0",
"@stacks/network": "7.0.2",
"@stacks/transactions": "7.0.2",
"@stacks/wallet-sdk": "^7.0.2",
"@theothergothamdev/mexc-sdk": "^1.2.2",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^16.4.7",
"ora": "^7.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^3.0.7",
"cross-fetch": "^4.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"vitest": "^3.0.7"
}
}