-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "@datagrok/sqlite",
"friendlyName": "SQLite",
"author": {
"name": "Oleksandra Serhiienko",
"email": "[email protected]"
},
"version": "1.2.0",
"description": "Support for importing and previewing SQLite files.",
"repository": {
"type": "git",
"url": "https://github.com/datagrok-ai/public.git",
"directory": "packages/SQLite"
},
"dependencies": {
"datagrok-api": "^1.23.0",
"@datagrok-libraries/utils": "^4.4.0",
"file-loader": "^6.2.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"browser": {
"fs": false,
"path": false,
"os": false,
"crypto": false
},
"scripts": {
"debug-sqlite": "grok publish",
"release-sqlite": "grok publish --release",
"build-sqlite": "webpack",
"build": "webpack",
"debug-sqlite-public": "grok publish public",
"release-sqlite-public": "grok publish public --release",
"debug-sqlite-local": "grok publish local",
"release-sqlite-local": "grok publish local --release",
"debug-sqlite-core": "grok publish core",
"release-sqlite-core": "grok publish core --release",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"test": "grok test",
"test-dev": "grok test --host dev",
"test-local": "grok test --host localhost"
},
"canEdit": [
"Developers"
],
"canView": [
"All users"
],
"category": "Data Access"
}