-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.53 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.53 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
{
"name": "libpg-query-13",
"version": "13.2.0",
"description": "PostgreSQL 13 query parser (lightweight - no deparse/scan)",
"homepage": "https://github.com/launchql/libpg-query-node",
"main": "./wasm/index.cjs",
"typings": "./wasm/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"wasm/*"
],
"exports": {
".": {
"types": "./wasm/index.d.ts",
"import": "./wasm/index.js",
"require": "./wasm/index.cjs"
}
},
"scripts": {
"clean": "yarn wasm:clean && rimraf cjs esm",
"build:js": "node scripts/build.js",
"build": "yarn clean; yarn wasm:build; yarn build:js",
"wasm:make": "docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten/emsdk emmake make",
"wasm:build": "yarn wasm:make build",
"wasm:rebuild": "yarn wasm:make rebuild",
"wasm:clean": "yarn wasm:make clean",
"wasm:clean-cache": "yarn wasm:make clean-cache",
"test": "mocha test/*.test.js --timeout 5000"
},
"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",
"chai": "^3.5.0",
"mocha": "^11.7.0",
"rimraf": "5.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@pgsql/types": "^13.0.0"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"plpgsql",
"database"
]
}