-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.84 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.84 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "genaicode",
"version": "1.0.1",
"author": "Grzegorz Tańczyk",
"repository": {
"type": "git",
"url": "git+https://github.com/gtanczyk/genaicode.git"
},
"keywords": [
"generate",
"code",
"ai",
"vite-plugin"
],
"type": "module",
"bin": "./bin/genaicode.cjs",
"engines": {
"node": ">=18"
},
"license": "Apache-2.0",
"files": [
"bin",
"dist",
"media",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./vite-plugin": {
"types": "./dist/vite-genaicode/vite-genaicode-plugin.d.ts",
"default": "./dist/vite-genaicode/vite-genaicode-plugin.js"
},
"./vite-context": {
"types": "./dist/vite-genaicode/vite-genaicode-context.d.ts",
"default": "./dist/vite-genaicode/vite-genaicode-context.js"
},
"./*": "./dist/*"
},
"scripts": {
"cli": "node ./bin/genaicode.cjs",
"interactive-cli": "node ./bin/genaicode.cjs --interactive",
"ui": "node ./bin/genaicode.cjs --ui",
"lint": "eslint . --ext js,ts,tsx --report-unused-disable-directives --max-warnings 0",
"test:watch": "vitest --config vitest.unit.config.ts",
"test": "vitest --config vitest.unit.config.ts --run",
"test:ci": "vitest run --config vitest.unit.config.ts --reporter=json",
"test:e2e": "vitest --config vitest.e2e.config.ts",
"test:eval": "vitest --config vitest.eval.config.ts",
"coverage": "vitest run --coverage",
"prepare": "husky install || true",
"type-check": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json && npm run build-frontend",
"build-frontend": "vite build src/main/ui/frontend",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@inquirer/type": "^1.5.5",
"@types/cors": "^2.8.13",
"@types/dockerode": "^3.3.42",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/mock-fs": "^4.13.4",
"@types/multer": "^1.4.12",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/tar-stream": "^3.1.4",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@uiw/react-json-view": "^2.0.0-alpha.30",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"madge": "^8.0.0",
"mock-fs": "^5.5.0",
"prettier": "^3.1.0",
"puppeteer": "^22.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"styled-components": "^6.1.13",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"vite": "^6.4.1",
"vite-plugin-checker": "^0.8.0",
"vitest": "^3.0.7"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@fontsource/press-start-2p": "^5.1.0",
"@google-cloud/aiplatform": "^3.34.0",
"@google/genai": "^1.30.0",
"@imgly/background-removal-node": "^1.4.5",
"@inquirer/prompts": "^7.8.4",
"@types/diff": "^5.2.1",
"@types/mime-types": "^2.1.4",
"@types/node": "^18.0.0",
"@types/styled-components": "^5.1.34",
"axios": "^1.13.5",
"c12": "^3.3.3",
"cors": "^2.8.5",
"diff": "^5.2.2",
"dockerode": "^4.0.7",
"express": "^4.22.1",
"find-cache-dir": "^5.0.0",
"glob-regex": "^0.3.2",
"helmet": "^7.1.0",
"image-size": "^1.2.1",
"inquirer-file-selector": "^0.4.0",
"jsonschema": "^1.4.1",
"mime-types": "^2.1.35",
"multer": "^2.1.1",
"openai": "^5.16.0",
"please-upgrade-node": "^3.2.0",
"sharp": "^0.33.4",
"simple-git": "^3.32.3",
"tar-stream": "^3.1.7",
"xml2js": "^0.6.2",
"zod": "^3.25.0"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}