-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.12 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
{
"name": "note-boi",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "https://github.com/Daniel-Knights/note-boi"
},
"type": "module",
"scripts": {
"vite:dev": "vite",
"vite:build": "vite build",
"vite:preview": "vite preview",
"dev": "tauri dev",
"build": "pnpm run checks && tauri build",
"build:debug": "tauri build --debug",
"icon": "tauri icon ./artwork/icon.png",
"info": "tauri info",
"test": "vitest run",
"test:watch": "vitest",
"test:update": "vitest run -u",
"lint": "eslint && vue-tsc --noEmit && tsc --noEmit",
"checks": "pnpm run lint && pnpm run test",
"format": "prettier --write ./src",
"release:patch": "tsx ./scripts/release.ts patch",
"release:minor": "tsx ./scripts/release.ts minor",
"release:major": "tsx ./scripts/release.ts major"
},
"dependencies": {
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-log": "~2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-shell": "~2",
"@tauri-apps/plugin-updater": "~2",
"quill": "^2.0.3",
"vue": "^3.5.13"
},
"devDependencies": {
"@babel/types": "^7.26.5",
"@eslint/js": "^9.18.0",
"@tauri-apps/cli": "^2.2.5",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.7",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/test-utils": "2.4.6",
"changenog": "^1.2.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"fake-indexeddb": "^6.0.0",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"quill-delta": "^5.1.0",
"sass-embedded": "^1.83.4",
"tsx": "^4.19.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vitest": "3.0.2",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.0"
}
}