-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.2 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@fileverse/api",
"version": "1.0.10",
"description": "Fileverse API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./worker": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js"
},
"./base": {
"types": "./dist/base.d.ts",
"import": "./dist/base.js"
}
},
"bin": {
"api": "dist/cli/index.js",
"fileverse-api": "dist/cli/index.js",
"ddctl": "dist/commands/index.js",
"fileverse-api-mcp": "dist/mcp/index.js"
},
"files": [
"dist",
"public"
],
"scripts": {
"build": "node scripts/generate-constants.cjs config/network.config.json && tsup",
"build:local": "node scripts/generate-constants.cjs config/dev.network.config.json && tsup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"generate:constants": "node scripts/generate-constants.cjs",
"prepublishOnly": "npm run typecheck && npm run clean && npm run build",
"dev": "node scripts/generate-constants.cjs config/dev.network.config.json && tsx watch src/index.ts",
"dev:worker": "node scripts/generate-constants.cjs config/dev.network.config.json && tsx watch src/worker.ts",
"dev:cli": "tsx src/commands/index.ts",
"dev:api": "tsx src/cli/index.ts",
"start:api": "NODE_ENV=production node dist/index.js",
"start:worker": "NODE_ENV=production node dist/worker.js",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fileverse/content-processor": "^0.1.0",
"@fileverse/crypto": "^0.0.21",
"@modelcontextprotocol/sdk": "^1.26.0",
"@stablelib/ed25519": "^2.0.2",
"@ucans/ucans": "^0.12.0",
"better-sqlite3": "^12.5.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validation": "^4.1.1",
"futoin-hkdf": "^1.5.3",
"helmet": "^8.0.0",
"js-base64": "^3.7.8",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"ox": "^0.11.3",
"permissionless": "^0.3.4",
"pg": "^8.18.0",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"prompts": "^2.4.2",
"short-uuid": "^6.0.3",
"tweetnacl": "^1.0.3",
"uuidv7": "^1.1.0",
"viem": "^2.45.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/multer": "^2.0.0",
"@types/node": "^20.14.0",
"@types/pg": "^8.16.0",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"nodemon": "^3.1.11",
"prettier": "^3.5.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.4.5"
}
}