@pgsql/transform 17.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@pgsql/transform",
3
+ "version": "17.1.0",
4
+ "author": "Dan Lynch <pyramation@gmail.com>",
5
+ "description": "Transform PostgreSQL AST types for pgsql-parser",
6
+ "main": "index.js",
7
+ "module": "esm/index.js",
8
+ "types": "index.d.ts",
9
+ "homepage": "https://github.com/launchql/pgsql-parser",
10
+ "license": "SEE LICENSE IN LICENSE",
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "directory": "dist"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/launchql/pgsql-parser"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/launchql/pgsql-parser/issues"
21
+ },
22
+ "scripts": {
23
+ "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
+ "clean": "rimraf dist",
25
+ "prepare": "npm run build",
26
+ "build": "npm run build:proto && npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
27
+ "build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
28
+ "build:proto": "ts-node scripts/pg-proto-parser",
29
+ "lint": "eslint . --fix",
30
+ "test": "jest",
31
+ "test:watch": "jest --watch"
32
+ },
33
+ "devDependencies": {
34
+ "pg-proto-parser": "^1.25.0"
35
+ },
36
+ "keywords": [],
37
+ "gitHead": "40ee618df37a501169847056a50558c453cd30a6"
38
+ }