This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Auto-GPT-Programming-TypeScript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prettier": "prettier --write '**/*'",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"fmt": "npm run prettier && npm run lint-fix",
"build": "tsc -p ./tsconfig.build.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HiromiShikata/template-typescript.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bin": {
"auto-gpt-programming-typescript": "./bin/index.js"
},
"bugs": {
"url": "https://github.com/HiromiShikata/template-typescript/issues"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/npm"
],
"branches": [
"main"
]
},
"homepage": "https://github.com/HiromiShikata/template-typescript#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/commander": "^2.12.2",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"conventional-changelog-conventionalcommits": "^7.0.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-type-assertion": "^1.3.0",
"jest": "^29.5.0",
"jest-html-reporter": "^3.10.0",
"jest-junit": "^16.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"commander": "^11.0.0",
"dayjs": "^1.11.8",
"dotenv": "^16.3.0",
"openai": "^4.0.0"
}
}