forked from Enrichdotfun/Lily-Algo-Token-Discovery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1009 Bytes
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
{
"name": "lily",
"version": "0.1.0",
"private": false,
"description": "Lily — a real-time pump.fun token discovery board. Surfaces reawakened old pre-bond coins and freshly bonded coins with on-chain quality gates.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"api": "node server/server.mjs",
"discover:old": "node discovery/old-prebond.mjs",
"discover:bonded": "node discovery/bonded.mjs",
"start": "node scripts/start-all.mjs"
},
"dependencies": {
"@solana/web3.js": "^1.98.4",
"better-sqlite3": "^11.8.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.0",
"tailwindcss": "^4.1.0",
"typescript": "~5.7.0",
"vite": "^6.0.0"
}
}