-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 940 Bytes
/
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
{
"name": "orcish-openai-connector",
"version": "1.5.70",
"author": "OrcDev <[email protected]>",
"keywords": [
"openai",
"connector",
"gpt",
"orc",
"orcdev"
],
"license": "MIT",
"main": "dist/OrcishOpenAIService.js",
"types": "dist/OrcishOpenAIService.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsc",
"start": "ts-node src/OrcishOpenAIService.ts",
"preinstall": "npx only-allow pnpm",
"commit": "./node_modules/cz-customizable/standalone.js"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"cz-customizable": "^7.2.1",
"eslint": "^8.57.0",
"husky": "^9.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"config": {
"cz-customizable": {
"config": "cz-config.js"
}
},
"files": [
"dist",
"types"
]
}