-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.32 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pocketbase-uml",
"version": "0.8.7",
"description": "A free, open-source web application that generates UML diagrams based on PocketBase databases",
"keywords": [
"pocketbase",
"uml",
"diagrams",
"database",
"model",
"data",
"schema",
"visualization",
"data model",
"view"
],
"files": [
"app",
"cli.js",
"README.md",
"LICENSE"
],
"repository": "pocketbase-uml/pocketbase-uml.github.io",
"homepage": "https://pocketbase-uml.github.io",
"license": "MIT",
"author": {
"name": "Ionut-Cristian Florescu",
"email": "[email protected]",
"url": "https://github.com/icflorescu"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/icflorescu"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node cli.cjs",
"test": "npm run test:unit && npm run test:integration",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:integration": "playwright test",
"test:unit": "vitest run",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"bin": {
"pocketbase-uml": "./cli.cjs"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.18",
"@tanstack/svelte-query": "^5.49.1",
"@types/eslint": "^8.56.10",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.41.0",
"js-base64": "^3.7.7",
"lodash.throttle": "^4.1.1",
"nomnoml": "^1.6.2",
"pocketbase": "^0.21.3",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"sass": "^1.77.6",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"svelte-local-storage-store": "^0.6.4",
"the-new-css-reset": "^1.11.2",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vitest": "^1.6.0"
},
"type": "module",
"dependencies": {
"commander": "^12.1.0",
"figlet": "^1.7.0",
"serve-handler": "^6.1.5"
}
}