-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "wizard-ql",
"author": {
"name": "Arthur Neuman",
"url": "https://github.com/exoRift"
},
"homepage": "https://github.com/guidance-analytics/wizard-ql",
"description": "WizardQL is a natural-language-like query language for constructing data queries for resources that meet conditions.",
"version": "2.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/guidance-analytics/wizard-ql.git"
},
"keywords": [
"query",
"language",
"querylanguage",
"parser",
"cel",
"expression"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "[ -d dist ] && rm -r dist; bun build --target=node --format=esm --packages external src/index.ts --outfile dist/index.js && tsc --project tsconfig.build.json",
"lint": "eslint ."
},
"devDependencies": {
"@types/bun": "latest",
"eslint": "^9.25.1",
"eslint-plugin-jsdoc": "^50.6.11",
"neostandard": "^0.12.1"
},
"optionalDependencies": {
"knex": "^3.1.0"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}