-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "cmd-ai-cli",
"version": "1.0.0",
"description": "An experimental CLI that has a command which lets you start a chat with CMD AI--`cmd-ai`.",
"main": "dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"start": "webpack serve --mode development",
"cli": "npm run build && tsc && electron ."
},
"keywords": [
],
"author": "David Akins",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"babel-loader": "latest",
"electron": "latest",
"webpack": "latest",
"webpack-cli": "latest",
"webpack-dev-server": "latest"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"css-loader": "latest",
"ts-loader": "latest",
"electron-reload": "^2.0.0-alpha.1",
"eslint": "latest",
"react": "latest1",
"react-dom": "latest",
"style-loader": "latest",
"typescript": "latest"
}
}