-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
55 lines (55 loc) · 1.49 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
54
55
{
"name": "extract-pg-schema",
"version": "5.1.2",
"keywords": [
"postgresql",
"schema"
],
"repository": "[email protected]: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",
"bin": {
"extract-pg-schema": "bin/extract-pg-schema"
},
"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.13.0",
"pg-query-emscripten": "^0.1.0",
"ramda": "^0.30.0",
"tagged-comment-parser": "^1.3.3"
},
"devDependencies": {
"@kristiandupont/dev-deps": "^2.29.0",
"@microsoft/api-documenter": "7.25.19",
"@microsoft/api-extractor": "7.47.11",
"@types/jsonpath": "0.2.4",
"@types/pg": "8.11.10",
"@types/ramda": "0.30.2",
"np": "10.0.7",
"testcontainers": "10.13.2",
"vitepress": "1.4.1",
"vue": "3.5.12"
},
"np": {},
"engines": {
"node": ">=16.0.0"
}
}