-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"name": "wizard-ql",
"author": {
"name": "Arthur Neuman",
"url": "https://github.com/exoRift"
},
"homepage": "https://github.com/exoRift/wizard-ql",
"description": "WizardQL is a natural-language-like query language for constructing data queries for resources that meet conditions.",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/exoRift/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 .",
"pretest:types": "bun run build && find test -name '*.test-d.ts' -exec perl -pi -e 's|// \\@ts-expect-error|// ts-expect-error|g' {} +",
"test:types": "tsd --files 'test/**/*.test-d.ts'",
"posttest:types": "find test -name '*.test-d.ts' -exec perl -pi -e 's|// ts-expect-error|// \\@ts-expect-error|g' {} +",
"test": "bun run test:types && bun test",
"preview": "bun run build && bunx serve ./test/preview",
"prepack": "bun run build"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"custom-types": "github:exoRift/custom-types",
"eslint": "^9.25.1",
"eslint-config": "github:exoRift/eslint-config",
"eslint-plugin-jsdoc": "^50.6.11",
"tsd": "^0.33.0"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}