-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 KB
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
{
"name": "obsidian-todoist-plugin",
"version": "2.3.0",
"description": "A Todoist plugin for Obsidian",
"scripts": {
"check": "tsgo --noEmit",
"dev": "npm run check && VITE_ENV=dev vite build",
"build": "vite build",
"test": "vitest",
"lint:check": "biome check ./src",
"lint:fix": "biome check --write ./src",
"gen": "vite-node scripts/gen-lang-status.ts"
},
"author": "Jamie Brynes",
"license": "ISC",
"dependencies": {
"@internationalized/date": "3.10.0",
"camelize-ts": "3.0.0",
"classnames": "2.5.1",
"framer-motion": "12.23.25",
"obsidian": "1.7.2",
"react": "19.2.1",
"react-aria-components": "1.13.0",
"react-dom": "19.2.1",
"react-textarea-autosize": "8.5.9",
"snakify-ts": "2.3.0",
"tslib": "2.8.1",
"yaml": "2.8.2",
"zod": "4.1.13",
"zustand": "5.0.9"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@rollup/plugin-replace": "6.0.3",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@types/node": "24.0.13",
"@types/react-dom": "19.2.1",
"@typescript/native-preview": "^7.0.0-dev.20251130.1",
"@vitejs/plugin-react": "5.1.2",
"jsdom": "27.3.0",
"sass": "1.96.0",
"typescript": "5.9.3",
"vite": "7.2.7",
"vite-node": "5.2.0",
"vite-plugin-static-copy": "3.1.4",
"vite-tsconfig-paths": "5.1.4",
"vitest": "4.0.15"
},
"optionalDependencies": {
"@biomejs/cli-linux-x64-musl": "2.3.8"
},
"overrides": {
"rollup": "4.44.2"
}
}