-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "pumpstudio-agent",
"version": "0.1.0",
"description": "Standalone MVP agent for Pump Studio — discover, analyze, and submit token intelligence to earn XP",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/agent.cjs",
"package": "npm run build && pkg dist/agent.cjs --targets node22-linux-x64,node22-macos-x64,node22-macos-arm64,node22-win-x64 --output dist/agent-quant"
},
"bin": "dist/agent.cjs",
"pkg": {
"assets": [],
"outputPath": "dist"
},
"dependencies": {
"dotenv": "^16.4.7",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"author": "Pump Studio <hello@pump.studio>",
"homepage": "https://pump.studio/agents",
"repository": {
"type": "git",
"url": "https://github.com/pumpdotstudio/pump-quant"
},
"keywords": [
"pump.fun",
"solana",
"memecoin",
"agent",
"ai",
"analytics",
"pump-studio"
],
"devDependencies": {
"@yao-pkg/pkg": "^6.14.1",
"esbuild": "^0.27.3"
}
}