-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.87 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.87 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
79
80
81
82
{
"name": "@superdapp/agents",
"version": "1.0.2",
"description": "SuperDapp AI Agents SDK and CLI for Node.js/TypeScript",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"superdapp": "dist/cli/index.js"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"start": "node dist/cli/index.js",
"dev": "tsx watch src/cli/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"superdapp",
"ai",
"agents",
"sdk",
"cli",
"typescript",
"bot",
"chat",
"automation",
"framework",
"nodejs"
],
"author": "SuperDapp Team",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.11.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"inquirer": "^9.2.19",
"node-schedule": "^2.1.1",
"ora": "^8.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^24.3.0",
"@types/node-schedule": "^2.1.8",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsx": "^4.10.5",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SuperDappAI/superdapp-js.git"
},
"bugs": {
"url": "https://github.com/SuperDappAI/superdapp-js/issues"
},
"homepage": "https://github.com/SuperDappAI/superdapp-js#readme"
}