@freik/pedroviz 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +599 -0
- package/README.md +109 -0
- package/dist/field-dark-kfzgjbw0.jpg +0 -0
- package/dist/field-light-p0m7q5e8.jpg +0 -0
- package/dist/index-0k6xv586.css +121 -0
- package/dist/index-q4rh30qd.js +50869 -0
- package/dist/index-q4rh30qd.js.map +590 -0
- package/dist/index.html +17 -0
- package/dist/logo-pefhw544.png +0 -0
- package/dist/main.js +19473 -0
- package/dist/main.js.map +494 -0
- package/package.json +120 -0
package/package.json
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@freik/pedroviz",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"repository": "https://github.com/kevinfrei/pedroviz.git",
|
|
5
|
+
"author": "Kevin Frei <kevinfrei@hotmail.com>",
|
|
6
|
+
"license": "AGPL-3.0-or-later",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"pedroviz": "./dist/main.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"format": "prettier -w \"src/**/*.ts\" \"src/**/*.tsx\" \"*.md\" \"*.json\" \"src/**/*.md\" \"src/**/*.json\" \"src/*.html\" \"src/server/**/*.java\"",
|
|
16
|
+
"types": "tsc --noEmit",
|
|
17
|
+
"clean": "rm -rf dist",
|
|
18
|
+
"check": "bun run types && bun test",
|
|
19
|
+
"dev": "bun --hot src/main.tsx",
|
|
20
|
+
"bundle": "bun run clean && bun build ./src/main.tsx --outdir=dist --sourcemap --target=bun --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
|
|
21
|
+
"start": "NODE_ENV=production bun src/main.tsx",
|
|
22
|
+
"launch": "bun run bundle && bun dist/main.js",
|
|
23
|
+
"prepublishOnly": "bun run bundle",
|
|
24
|
+
"dead": "knip"
|
|
25
|
+
},
|
|
26
|
+
"prepare": "simple-git-hooks",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@fluentui/react-components": "^9.74.6",
|
|
29
|
+
"@fluentui/react-icons": "^2.0.337",
|
|
30
|
+
"@fluentui/tokens": "^1.0.0-alpha.24",
|
|
31
|
+
"@freik/containers": "^0.4.10",
|
|
32
|
+
"@freik/fluent9-tools": "^0.2.0",
|
|
33
|
+
"@freik/react-tools": "^0.4.0",
|
|
34
|
+
"@freik/typechk": "^0.10.0",
|
|
35
|
+
"java-parser": "^3.0.1",
|
|
36
|
+
"jotai": "^2.20.2",
|
|
37
|
+
"jotai-family": "^1.1.0",
|
|
38
|
+
"jotai-optics": "^0.4.0",
|
|
39
|
+
"optics-ts": "^2.4.1",
|
|
40
|
+
"react": "^19.2.8",
|
|
41
|
+
"react-dom": "^19.2.8",
|
|
42
|
+
"react-resizable-panels": "^4.12.3"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@happy-dom/global-registrator": "^20.11.6",
|
|
46
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
|
|
47
|
+
"@testing-library/jest-dom": "^7.0.1",
|
|
48
|
+
"@testing-library/react": "^16.3.2",
|
|
49
|
+
"@types/bun": "1.3.14",
|
|
50
|
+
"@types/react": "^19.2.18",
|
|
51
|
+
"@types/react-dom": "^19.2.4",
|
|
52
|
+
"knip": "^6.32.2",
|
|
53
|
+
"lint-staged": "^17.3.0",
|
|
54
|
+
"prettier": "^3.9.6",
|
|
55
|
+
"prettier-plugin-java": "^2.10.3",
|
|
56
|
+
"simple-git-hooks": "^2.13.1",
|
|
57
|
+
"typescript": "^7.0.2"
|
|
58
|
+
},
|
|
59
|
+
" //-1": "Configuration stuff for Prettier:",
|
|
60
|
+
"prettier": {
|
|
61
|
+
"printWidth": 80,
|
|
62
|
+
"trailingComma": "all",
|
|
63
|
+
"singleQuote": true,
|
|
64
|
+
"proseWrap": "always",
|
|
65
|
+
"tabWidth": 2,
|
|
66
|
+
"useTabs": false,
|
|
67
|
+
"bracketSameLine": true,
|
|
68
|
+
"arrowParens": "always",
|
|
69
|
+
"plugins": [
|
|
70
|
+
"prettier-plugin-java",
|
|
71
|
+
"@ianvs/prettier-plugin-sort-imports"
|
|
72
|
+
],
|
|
73
|
+
"importOrder": [
|
|
74
|
+
"^bun:.*$",
|
|
75
|
+
"^node:.*$",
|
|
76
|
+
"^react$",
|
|
77
|
+
"^react-dom$",
|
|
78
|
+
"^react-dom/client$",
|
|
79
|
+
"^.*jotai.*$",
|
|
80
|
+
"",
|
|
81
|
+
"<THIRD_PARTY_MODULES>",
|
|
82
|
+
"^@freik/.*$",
|
|
83
|
+
"",
|
|
84
|
+
"^(?!.*[.]css$)[./].*$",
|
|
85
|
+
"",
|
|
86
|
+
".css$"
|
|
87
|
+
],
|
|
88
|
+
"overrides": [
|
|
89
|
+
{
|
|
90
|
+
"files": "*.java",
|
|
91
|
+
"options": {
|
|
92
|
+
"tabWidth": 4,
|
|
93
|
+
"printWidth": 100,
|
|
94
|
+
"arrowParens": "avoid"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
" //-2": "Configuration stuff for knip:",
|
|
100
|
+
"knip": {
|
|
101
|
+
"entry": [
|
|
102
|
+
"main.tsx",
|
|
103
|
+
"client/frontend.tsx"
|
|
104
|
+
],
|
|
105
|
+
"ignore": [
|
|
106
|
+
"client/__tests__/**/*",
|
|
107
|
+
"server/__tests__/**/*"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
" //-3": "Hook configuration stuff:",
|
|
111
|
+
"simple-git-hooks": {
|
|
112
|
+
"pre-commit": "bunx lint-staged",
|
|
113
|
+
"pre-push": "bun run check"
|
|
114
|
+
},
|
|
115
|
+
"lint-staged": {
|
|
116
|
+
"*.{js,jsx,ts,tsx,json,java,md}": [
|
|
117
|
+
"prettier --write"
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
}
|