-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 KB
/
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
45
46
47
{
"name": "open-cursor-api",
"version": "1.0.0",
"description": "OpenCursor API",
"private": false,
"author": "zac_ma",
"repository": "https://github.com/yokingma/OpenCursor.git",
"type": "module",
"main": "./dist/app.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "dotenvx run --env-file=.env -- node ./dist/app.js",
"dev": "dotenvx run --env-file=.env.local --env-file=.env -- cross-env NODE_ENV=development nodemon --exec node --loader ts-node/esm ./src/app.ts",
"check-types": "tsc --noEmit",
"build": "shx rm -rf dist && tsc && shx cp src/provider/*.proto dist/provider"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.32.0",
"@koa/bodyparser": "^5.1.1",
"@koa/cors": "^5.0.0",
"@koa/router": "^13.1.0",
"dotenv": "^16.4.5",
"fetch-sse": "^1.1.0",
"joi": "^17.13.3",
"koa": "^2.15.3",
"protobufjs": "^7.4.0",
"uuid": "^11.0.3",
"winston": "^3.15.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/koa-static": "^4.0.4",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"nodemon": "^3.1.9",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"license": "MIT"
}