forked from constructive-io/libpg-query-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.77 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
{
"name": "@ashbyhq/libpg-query-native",
"version": "0.2.0",
"description": "PostgreSQL query parser — native N-API + jemalloc backend",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"platforms.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build:native": "make build",
"build:ts": "tsc",
"build": "npm run build:native && npm run build:ts",
"clean": "make clean && rm -rf dist",
"test": "node --test test/parsing.test.js test/fingerprint.test.js test/normalize.test.js test/plpgsql.test.js test/scan.test.js test/errors.test.js test/deparse.test.js test/proto.test.js test/readme.test.js",
"benchmark": "node benchmark/memory.mjs",
"package-platforms": "node scripts/package-platforms.mjs",
"generate:proto": "node scripts/generate-proto.mjs",
"generate:fixtures": "node scripts/generate-fixtures.mjs"
},
"keywords": [
"postgresql",
"parser",
"sql",
"native",
"napi",
"jemalloc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ashbyhq/libpg-query-node.git",
"directory": "native"
},
"dependencies": {
"@pgsql/types": "^18.0.0",
"protobufjs": "^8.7.2"
},
"devDependencies": {
"@types/node": "^26.0.1",
"node-addon-api": "^8.3.1",
"node-api-headers": "^1.5.0",
"typescript": "5.9.3"
},
"x-upstream": {
"libpgQueryRepo": "https://github.com/pganalyze/libpg_query.git",
"libpgQueryTag": "18.0.0",
"pgMajor": "18",
"constructiveBaseSha": "74ed197bde234ede243e66f47a417a6017c563d2"
}
}