-
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) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 888 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": "obsidian-folderbase",
"version": "0.1.0",
"main": "main.js",
"license": "ISC",
"scripts": {
"dev": "node scripts/esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node scripts/esbuild.config.mjs production",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"types": "tsc --noEmit",
"version": "node scripts/version-bump.mjs && git add manifest.json versions.json"
},
"dependencies": {
"@tanstack/react-table": "^8.21.3",
"clsx": "^2.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.25.46",
"zustand": "^5.0.5"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
"@types/node": "^22.15.29",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"builtin-modules": "5.0.0",
"esbuild": "0.25.5",
"obsidian": "latest",
"tslib": "^2.8.1",
"type-fest": "^4.41.0",
"typescript": "5.8.3"
}
}