-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 818 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 818 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
{
"name": "originproof",
"version": "0.1.0",
"type": "module",
"bin": {
"originproof": "./dist/src/cli.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"postbuild": "node -e \"const fs=require('fs');const f='dist/src/cli.js';const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!')){fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c);}\"",
"start": "node dist/src/server.js",
"test": "node --test dist/tests/core.test.js dist/tests/server.test.js dist/tests/cli.test.js"
},
"dependencies": {
"commander": "^13.1.0",
"express": "^4.21.0",
"express-rate-limit": "^8.3.2",
"multer": "^2.1.1"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.0.0",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12"
}
}