forked from kristiandupont/extract-pg-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "extract-pg-schema",
"version": "4.3.2",
"keywords": [
"postgresql",
"schema"
],
"repository": "git@github.com:kristiandupont/extract-pg-schema.git",
"license": "MIT",
"author": {
"name": "Kristian Dupont",
"url": "http://www.kristiandupont.com"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"scripts": {
"build": "tsc",
"lint": "eslint . -f visualstudio --report-unused-disable-directives --ext .js,.ts",
"test": "vitest run",
"version": "npm run build",
"docs:prep": "tsc && npx api-extractor run --local --verbose && npx api-documenter markdown --input-folder=./temp/ --output-folder=./docs-src/api && rm -rf ./temp",
"docs:dev": "npm run docs:prep && vitepress dev docs-src",
"docs:build": "npm run docs:prep && vitepress build docs-src"
},
"dependencies": {
"jsonpath": "^1.1.1",
"knex": "3.1.0",
"pg": "8.11.3",
"pg-query-emscripten": "^0.1.0",
"ramda": "^0.29.0",
"tagged-comment-parser": "^1.3.3"
},
"devDependencies": {
"@kristiandupont/dev-deps": "^2.16.0",
"@microsoft/api-documenter": "7.23.14",
"@microsoft/api-extractor": "7.38.5",
"@types/jsonpath": "0.2.4",
"@types/pg": "8.10.9",
"@types/ramda": "0.29.9",
"np": "9.2.0",
"testcontainers": "10.4.0",
"vitepress": "1.0.0-rc.32",
"vitest-fixture": "0.5.2",
"vue": "3.3.12"
},
"np": {},
"engines": {
"node": ">=16.0.0"
}
}