UNPKG

libpg-query

Version:
52 lines 1.48 kB
{ "name": "libpg-query", "version": "17.7.3", "description": "The real PostgreSQL query parser", "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": "17", "distTag": "pg17", "libpgQueryTag": "17-6.1.0" }, "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" ] }