-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 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
{
"name": "code-analyzer",
"version": "1.0.0",
"description": "A desktop application for analyzing code quality and providing suggestions",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "NODE_ENV=development electron .",
"build": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"code-analysis",
"linting",
"electron",
"static-analysis"
],
"author": "",
"license": "MIT",
"dependencies": {
"acorn": "^8.8.2",
"eslint": "^8.38.0",
"monaco-editor": "^0.44.0",
"prettier": "^2.8.7",
"luaparse": "^0.3.1",
"rust-analyzer": "^0.3.0",
"tree-sitter": "^0.20.1",
"tree-sitter-c": "^0.20.2",
"tree-sitter-rust": "^0.20.3",
"tree-sitter-lua": "^0.0.14",
"tree-sitter-java": "^0.20.0",
"tree-sitter-c-sharp": "^0.20.0",
"tree-sitter-php": "^0.19.0",
"tree-sitter-ruby": "^0.19.0",
"tree-sitter-go": "^0.19.1",
"tree-sitter-swift": "^0.3.1",
"java-parser": "^2.0.3",
"php-parser": "^3.1.3",
"ruby-parser": "^3.0.1",
"go-parser": "^0.1.0",
"sql-parser": "^0.6.0",
"node-sqlparser": "^1.0.4",
"pg-query-parser": "^0.3.0"
},
"devDependencies": {
"electron": "^24.0.0",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "com.yourcompany.codeanalyzer",
"productName": "Code Analyzer",
"directories": {
"output": "dist"
},
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}