-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1004 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1004 Bytes
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
{
"name": "npgsqlrest-docs",
"version": "1.0.0",
"description": "Technical documentation for NpgsqlRest",
"type": "module",
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"publish": "npm run build && git add . && git commit --amend --no-edit && git push origin main --force && cd build/npgsqlrest.github.io && git add . && git commit --amend --no-edit && git push origin main --force",
"push": "git add . && git commit --amend --no-edit && git push origin main --force"
},
"devDependencies": {
"vitepress": "^1.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/vb-consulting/NpgsqlRest.git"
},
"keywords": [
"postgresql",
"rest-api",
"npgsql",
"dotnet",
"documentation"
],
"author": "VB Consulting",
"license": "MIT",
"dependencies": {
"@giscus/vue": "^3.1.1",
"mermaid": "^11.12.2",
"vitepress-mermaid-renderer": "^1.1.8"
}
}