-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1015 Bytes
/
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
{
"name": "sui-events-indexer",
"version": "1.0.1",
"description": "A CLI tool that generates a complete event indexing solution for Sui Move packages",
"main": "dist/index.js",
"bin": {
"sui-events-indexer": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"sui",
"move",
"blockchain",
"events",
"indexer",
"typescript",
"prisma"
],
"author": "Buidly",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "npm run build && tsx src/index.ts",
"dev:generate": "npm run build && node dist/index.js generate",
"start": "tsx src/index.ts",
"start:debug": "tsx --inspect-brk src/index.ts"
},
"dependencies": {
"@mysten/sui": "^1.18.0",
"@prisma/client": "^6.1.0",
"axios": "^1.7.9",
"commander": "^13.0.0",
"prisma": "^6.1.0"
},
"type": "commonjs"
}