-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.13 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.13 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@questdb/sql-parser",
"version": "0.1.3",
"description": "SQL parser for QuestDB syntax using Chevrotain",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./grammar": {
"import": {
"types": "./dist/grammar/index.d.ts",
"default": "./dist/grammar/index.js"
},
"require": {
"types": "./dist/grammar/index.d.ts",
"default": "./dist/grammar/index.cjs"
}
}
},
"packageManager": "yarn@4.9.1",
"scripts": {
"build": "tsup && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"generate:cst": "node --import jiti/register scripts/generate-cst-types.ts",
"clean": "rm -rf dist coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"prepublishOnly": "yarn clean && yarn build"
},
"keywords": [
"questdb",
"sql",
"parser",
"chevrotain",
"ast"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=18.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/questdb/sql-parser.git"
},
"homepage": "https://github.com/questdb/sql-parser",
"bugs": {
"url": "https://github.com/questdb/sql-parser/issues"
},
"license": "Apache-2.0",
"dependencies": {
"chevrotain": "^11.1.1"
},
"devDependencies": {
"@chevrotain/cst-dts-gen": "^11.1.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.2.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
}
}