-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
{
"name": "friday-gpt",
"description": "A.I 에게 R&R을 부여해서 프로그래밍 업무를 진행시킵니다.",
"version": "0.0.3",
"main": "index.js",
"type": "module",
"bin": {
"friday-gpt": "bin/friday-gpt.js"
},
"scripts": {
"start": "npm run build && ([ -d test-e2e ] || mkdir test-e2e) && cd test-e2e && node ../bin/friday-gpt",
"dev": "tsc && node -r dotenv/config dist/dev.js",
"architect": "tsc && node -r dotenv/config dist/architect.js",
"evangelist": "tsc && node -r dotenv/config dist/evangelist.js",
"programmer": "tsc && node -r dotenv/config dist/programmer.js",
"reviewer": "tsc && node -r dotenv/config dist/reviewer.js",
"new-tts": "tsc && node -r dotenv/config dist/azureSpeak.js",
"lint": "prettier --write .",
"build": "tsc",
"typecheck": "tsc",
"release:patch": "npm run build && npm version patch && npm run build && npm publish && git push --follow-tags",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/hmmhmmhm/friday-gpt"
},
"devDependencies": {
"@types/node": "^18.15.11",
"chalk": "^5.2.0",
"dotenv": "^16.0.3",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@inquirer/prompts": "^3.2.0",
"axios": "^1.3.4",
"axios-retry": "^3.4.0",
"cheerio": "^1.0.0-rc.12",
"cleye": "^1.3.2",
"microsoft-cognitiveservices-speech-sdk": "^1.27.0",
"puppeteer": "^21.3.8",
"sound-play": "^1.1.0"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint"
],
"after:bump": "npm run build"
}
}
}