-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1015 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1015 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
30
31
32
33
34
35
36
37
38
{
"name": "teaching-parametric-design-backend",
"version": "0.1.0",
"description": "API for forwarding code generation requests to OpenRouter and returning HTML-highlighted JavaScript snippets.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "NODE_ENV=test vitest run",
"docs": "typedoc --options typedoc.json",
"docs:api": "node scripts/buildSwaggerUi.js"
},
"keywords": [
"openrouter",
"express",
"typescript",
"code-generation"
],
"license": "MIT",
"dependencies": {
"@openrouter/sdk": "^0.3.14",
"dotenv": "^17.2.3",
"express": "^4.19.2",
"highlight.js": "^11.9.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.5",
"jsdom": "^22.1.0",
"swagger-ui-dist": "^5.20.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.7",
"typescript": "^5.5.4",
"vitest": "^4.0.17"
}
}