-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "@guanmingchiu/sqlparser-ts",
"version": "0.61.1",
"type": "module",
"description": "A SQL parser for JavaScript and TypeScript, powered by datafusion-sqlparser-rs via WASM",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"wasm",
"README.md"
],
"scripts": {
"build": "npm run build:wasm && npm run build:ts",
"build:wasm": "wasm-pack build --target web --out-dir wasm && rm -f wasm/.gitignore",
"build:ts": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"prepublishOnly": "npm run build",
"local:pack": "npm run build:ts && npm pack",
"local:link": "npm run build:ts && npm link"
},
"keywords": [
"sql",
"parser",
"sqlparser",
"ast",
"wasm",
"webassembly",
"typescript"
],
"author": "Guan-Ming Chiu",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/guan404ming/sqlparser-ts.git"
},
"devDependencies": {
"@types/node": "^25.2.3",
"eslint": "^9.28.0",
"eslint-plugin-unused-imports": "^4.4.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=16.0.0"
}
}