UNPKG

libpg-query

Version:
52 lines 1.51 kB
{ "name": "libpg-query", "version": "17.6.0", "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" }, "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": "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": {}, "dependencies": { "@pgsql/types": "^17.6.0" }, "keywords": [ "sql", "postgres", "postgresql", "pg", "query", "plpgsql", "database" ] }