-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.41 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.41 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@elastic/esql",
"version": "0.0.1",
"author": "Kibana ES|QL team",
"description": "A set of ts tools to parse, build and transform ES|QL queries programmatically.",
"packageManager": "yarn@1.22.22",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./types": {
"types": "./lib/types.d.ts",
"import": "./lib/types.mjs",
"require": "./lib/types.js",
"default": "./lib/types.js"
}
},
"typesVersions": {
"*": {
"types": [
"./lib/types.d.ts"
]
}
},
"files": [
"NOTICE.txt",
"LICENSE.txt",
"lib"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsup && tsc",
"build:watch": "tsup --watch --onSuccess \"tsc\"",
"prebuild:antlr4": "brew bundle --file=./.buildkite/scripts/antlr4_tools/brewfile",
"build:antlr4": "npm run build:antlr4:esql && npm run build:antlr4:promql",
"build:antlr4:esql": "npm run build:antlr4:esql:lexer && npm run build:antlr4:esql:parser",
"postbuild:antlr4:esql": "./.buildkite/scripts/postbuild.sh esql",
"build:antlr4:esql:parser": "antlr -Dlanguage=TypeScript -lib src/parser/antlr/parser src/parser/antlr/esql_parser.g4",
"build:antlr4:esql:lexer": "antlr -Dlanguage=TypeScript -lib src/parser/antlr/lexer src/parser/antlr/esql_lexer.g4",
"build:antlr4:promql": "npm run build:antlr4:promql:lexer && npm run build:antlr4:promql:parser",
"postbuild:antlr4:promql": "./.buildkite/scripts/postbuild.sh promql",
"build:antlr4:promql:parser": "antlr -Dlanguage=TypeScript src/parser/antlr/promql_parser.g4",
"build:antlr4:promql:lexer": "antlr -Dlanguage=TypeScript src/parser/antlr/promql_lexer.g4",
"semantic-release:dry-run": "semantic-release --dry-run --debug",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": "https://github.com/elastic/esql-js.git",
"license": "Elastic-2.0",
"sideEffects": false,
"devDependencies": {
"@babel/eslint-parser": "7.28.6",
"@babel/runtime": "7.29.2",
"@eslint/js": "10.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@storybook/react-vite": "10.3.5",
"@types/jest": "30.0.0",
"@types/react": "^19.2.14",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-storybook": "10.3.5",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"react": "19.2.5",
"react-dom": "19.2.5",
"semantic-release": "25.0.3",
"storybook": "10.3.5",
"ts-jest": "29.4.9",
"tsup": "8.5.1",
"typescript": "6.0.2",
"typescript-eslint": "8.58.2",
"vite": "8.0.8"
},
"dependencies": {
"antlr4": "4.13.2",
"tree-dump": "1.1.0",
"tslib": "2.8.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
},
"private": false,
"publishConfig": {
"access": "public"
}
}