forked from vakovalskii/copyosity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "copyosity",
"version": "1.0.0",
"description": "A fast, native clipboard manager with on-device intelligence. Built with Tauri, Svelte, and Rust.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "npm run typecheck && npm run test && npm run lint",
"test": "bash scripts/with-npm.sh node --localstorage-file=.test-localstorage --test \"src/**/*.test.ts\"",
"check:watch": "npm run typecheck:watch",
"typecheck": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"typecheck:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "npm run lint:js && npm run format && npm run lint:css",
"fix": "npm run format:fix && npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "oxlint .",
"lint:js:fix": "oxlint --fix .",
"lint:css": "stylelint \"src/**/*.{css,svelte}\"",
"lint:css:fix": "stylelint --fix \"src/**/*.{css,svelte}\"",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"format:docs": "oxfmt --check '**/*.md' '**/*.json'",
"format:docs:fix": "oxfmt --write '**/*.md' '**/*.json'",
"tauri": "bash scripts/with-tauri.sh",
"prepare": "lefthook install"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^3.0.7",
"@ai-sdk/svelte": "^5.0.22",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"ai": "^7.0.22",
"marked": "^18.0.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.68.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tauri-apps/cli": "^2.11.4",
"@types/node": "^25.9.4",
"lefthook": "^2.1.9",
"oxfmt": "^0.54.0",
"oxlint": "^1.72.0",
"postcss-html": "^1.8.1",
"stylelint": "^17.14.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-declaration-strict-value": "^1.11.1",
"stylelint-order": "^8.1.1",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"typescript": "^6.0.3",
"vite": "^8.1.2"
},
"overrides": {
"cookie": "^0.7.2"
},
"allowScripts": {
"fsevents@2.3.3": true,
"lefthook@2.1.9": true
}
}