-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "@libpg-query/v18",
"version": "18.0.0-dev.0",
"description": "The real PostgreSQL query parser (PG 18 dev)",
"homepage": "https://github.com/constructive-io/libpg-query-node",
"main": "./wasm/index.cjs",
"module": "./wasm/index.js",
"typings": "./wasm/index.d.ts",
"publishConfig": {
"access": "public"
},
"x-publish": {
"publishName": "libpg-query",
"pgVersion": "18",
"distTag": "pg18-dev",
"libpgQueryTag": "18-latest-dev"
},
"files": [
"wasm/*"
],
"scripts": {
"clean": "pnpm wasm:clean && rimraf wasm/*.js wasm/*.cjs wasm/*.d.ts",
"build:js": "node scripts/build.js",
"build": "pnpm clean && pnpm wasm:build && pnpm build:js",
"publish:pkg": "node ../../scripts/publish-single-version.js",
"wasm:make": "docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten/emsdk emmake make",
"wasm:build": "pnpm wasm:make build",
"wasm:rebuild": "pnpm wasm:make rebuild",
"wasm:clean": "pnpm wasm:make clean",
"wasm:clean-cache": "pnpm wasm:make clean-cache",
"test": "node --test test/parsing.test.js test/errors.test.js"
},
"author": "Constructive <developers@constructive.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/constructive-io/libpg-query-node.git"
},
"devDependencies": {},
"dependencies": {
"@pgsql/types": "^17.6.2"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"plpgsql",
"database"
]
}