-
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.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 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/parser",
"version": "17.6.1",
"description": "The real PostgreSQL query parser",
"homepage": "https://github.com/launchql/libpg-query-node",
"main": "./wasm/index.cjs",
"module": "./wasm/index.js",
"typings": "./wasm/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"wasm/*",
"proto.js"
],
"scripts": {
"clean": "pnpm wasm:clean && rimraf cjs esm",
"build:js": "node scripts/build.js",
"build": "pnpm clean; pnpm wasm:build; pnpm build: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/deparsing.test.js test/fingerprint.test.js test/normalize.test.js test/plpgsql.test.js test/scan.test.js",
"yamlize": "node ./scripts/yamlize.js",
"protogen": "node ./scripts/protogen.js"
},
"author": "Dan Lynch <pyramation@gmail.com> (http://github.com/pyramation)",
"license": "LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git://github.com/launchql/libpg-query-node.git"
},
"devDependencies": {
"@launchql/proto-cli": "1.25.0",
"@yamlize/cli": "^0.8.0"
},
"dependencies": {
"@pgsql/types": "^17.6.0",
"@launchql/protobufjs": "7.2.6"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"plpgsql",
"database"
]
}