-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 949 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 949 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
{
"name": "requestcodegen",
"version": "0.0.3",
"description": "A library to generate HTTP client example code in different programming languages.",
"repository": {
"type": "git",
"url": "git+https://github.com/krasun/requestcodegen.git"
},
"author": "Dmytro Krasun",
"license": "MIT",
"bugs": {
"url": "https://github.com/krasun/requestcodegen/issues"
},
"main": "dist/generator.js",
"types": "dist/@types/generator.d.ts",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^17.0.40",
"jest": "^29.7.0",
"openai": "^4.24.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^4.7.3"
},
"scripts": {
"test": "jest",
"generate": "ts-node ./src/scripts/generate.ts",
"examples": "ts-node ./src/scripts/examples.ts ./examples.md",
"build": "./node_modules/typescript/bin/tsc",
"prepare": "npm run build"
}
}