-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ezql",
"version": "0.0.3",
"description": "Ask your database questions, anywhere.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"bin": {
"ezql": "dist/cli/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"test:watch": "jest --config config/jest.config.js --watch",
"test": "jest --config config/jest.config.js",
"test:cov": "jest --config config/jest.config.js --coverage",
"watch": "npx tsc -w",
"watch:cli": "npx tsc -w -p config/tsconfig.cli.json",
"build": "rm -rf dist && concurrently npm:build:*",
"build:cli": "tsc -p config/tsconfig.cli.json",
"build:cjs": "tsc -p config/tsconfig.cjs.json",
"build:esm": "tsc -p config/tsconfig.esm.json",
"build:types": "tsc -p config/tsconfig.types.json",
"build:umd": "rollup --config config/rollup.config.js --bundleConfigAsCjs",
"update:demo": "npm run build:umd && node demo/copy-assets.mjs",
"prepare": "husky install",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Outerbase/ezql.git"
},
"keywords": [
"ezql",
"sql",
"ai",
"outerbase",
"embedded",
"natural",
"language",
"ask",
"translate",
"respond"
],
"author": "Outerbase <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Outerbase/ezql/issues"
},
"homepage": "https://www.ezql.ai/",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"prettier": "2.8.4",
"rollup": "^3.17.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@commander-js/extra-typings": "^10.0.2",
"commander": "^10.0.0"
}
}