-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.47 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
{
"name": "intents-cli",
"version": "0.1.9",
"description": "Cross-chain token swaps from the command line. Built for AI agents, scripts, and automation.",
"main": "dist/index.js",
"bin": {
"intents": "dist/index.js"
},
"type": "module",
"files": [
"dist",
"scripts",
"vendor"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"near",
"intents",
"swap",
"crypto",
"cli",
"cross-chain",
"defi",
"blockchain",
"agent",
"automation"
],
"author": "NEAR",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/near/intents-cli.git"
},
"homepage": "https://github.com/near/intents-cli#readme",
"bugs": {
"url": "https://github.com/near/intents-cli/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.2.1",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}