forked from motiful/cc-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 694 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 694 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
{
"name": "cc-gateway",
"version": "0.1.0",
"description": "AI API identity gateway — reverse proxy that normalizes device fingerprints and telemetry for privacy-preserving API proxying",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"generate-token": "tsx src/scripts/generate-token.ts",
"generate-identity": "tsx src/scripts/generate-identity.ts",
"test": "tsx tests/rewriter.test.ts"
},
"dependencies": {
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}