-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@aijunior/dev",
"version": "0.3.21",
"description": "Your AI Contributor which codes itself",
"type": "module",
"main": "src/main.js",
"bin": {
"junior": "dist/bin/web.js",
"junior-web": "dist/bin/web.js",
"junior-cli": "dist/bin/cli.js",
"junior-init": "dist/bin/init.js",
"junior-rollback": "dist/bin/rollback.js",
"junior-news": "dist/bin/readGitHistoryToMd.js"
},
"scripts": {
"cli": "node scripts/cli.js",
"start": "node scripts/dev.js",
"update-logo": "node ./scripts/updateLogo.js",
"clear-branches": "node ./scripts/clearBranchesCommand.js $@",
"test": "cypress open",
"rollback": "node scripts/junior-rollback.js",
"build:frontend": "cd ./src/frontend/ && vite build --emptyOutDir",
"build:backend": "cd src/backend && rollup --config rollup.config.js",
"dev": "npm run start",
"build": "npm run build:frontend && npm run build:backend"
},
"keywords": [
"cli",
"uppercase"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/js-yaml": "^4.0.5",
"autoprefixer": "^10.4.14",
"chatgpt": "^5.2.4",
"cors": "^2.8.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"highlight.js": "^11.8.0",
"js-yaml": "^4.1.0",
"markdown-it": "^13.0.1",
"marked": "^5.1.0",
"node-pty": "^1.0.0",
"sharp": "^0.32.4",
"simple-git": "^3.19.1",
"solid-js": "^1.7.7",
"tailwindcss": "^3.3.3",
"ws": "^8.13.0",
"xterm": "^5.3.0"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tisztamo/Junior.git"
},
"bugs": {
"url": "https://github.com/tisztamo/Junior/issues"
},
"homepage": "https://github.com/tisztamo/Junior#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"postcss": "^8.4.26",
"postcss-nested": "^6.0.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"vite": "^4",
"vite-plugin-solid": "^2"
},
"files": [
"dist/",
"prompt/",
"scripts/"
]
}