-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 930 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 930 Bytes
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
{
"name": "@saltcorn/copilot",
"version": "0.7.5",
"description": "AI assistant for building Saltcorn applications",
"main": "index.js",
"dependencies": {
"@saltcorn/data": "^0.9.0",
"underscore": "1.13.6",
"node-sql-parser": "4.15.0",
"markdown-it": "14.1.0",
"style-to-object": "1.0.8",
"node-html-parser": "7.0.1",
"html-tags": "3.3.1"
},
"devDependencies": {
"jest": "^29.7.0"
},
"scripts": {
"test": "jest tests --runInBand"
},
"author": "Tom Nielsen",
"license": "MIT",
"repository": "github:saltcorn/copilot",
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2022
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"rules": {
"no-unused-vars": "off",
"no-case-declarations": "off",
"no-empty": "warn",
"no-fallthrough": "warn"
}
}
}