-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.14 KB
/
package.json
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
{
"name": "libpg-query-node",
"version": "0.0.0",
"description": "Collection of packages for using libpg_query in Node.js",
"type": "module",
"author": "Santeri Hiltunen <[email protected]> (https://hilzu.moe/)",
"license": "BSD-3-Clause",
"homepage": "https://github.com/Hilzu/libpg-query-node#readme",
"bugs": {
"url": "https://github.com/Hilzu/libpg-query-node/issues"
},
"repository": {
"url": "git+ssh://[email protected]/Hilzu/libpg-query-node.git",
"type": "git"
},
"private": true,
"engines": {
"node": "^18.0.0 || >=20.0.0",
"npm": ">=9.8.1"
},
"workspaces": [
"packages/libpg-query-wasm",
"packages/prettier-plugin-postgresql"
],
"scripts": {
"build": "npm run --workspaces --if-present build",
"format": "npm run prettier -- --write",
"prettier": "prettier .",
"test": "npm run test:root && npm run test:workspaces",
"test:format": "npm run prettier -- --check",
"test:root": "npm run test:format",
"test:workspaces": "npm run --workspaces --if-present test"
},
"devDependencies": {
"prettier": "3.2.5",
"txm": "^8.2.0",
"typescript": "~5.4.2"
}
}