-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 733 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 733 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
{
"name": "master-compass",
"description": "An interactive organizational navigation tool built to end the blame game and create real ownership.",
"version": "1.0.0",
"author": "Julian Cobos",
"packageManager": "pnpm@10.28.2",
"license": "MIT",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"type": "module",
"main": "./src/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"d3": "7.9.0",
"marked": "^17.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"vite": "^7.3.1"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": "biome check --write --no-errors-on-unmatched"
}
}