forked from heyito/ito
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 5.21 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 5.21 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "ito",
"version": "0.2.3",
"description": "Ito, a smart voice assistant",
"main": "./out/main/main.js",
"license": "MIT",
"author": {
"name": "Demox Labs",
"url": "https://github.com/demox-labs"
},
"build": {
"extraResources": [
{
"from": "lib/generated",
"to": "proto",
"filter": [
"**/*.proto"
]
}
]
},
"scripts": {
"dev": "electron-vite dev -w",
"dev:rust": "bun build:rust:mac && bun dev",
"format:fix:app": "prettier --write app lib",
"format:fix": "prettier --write .",
"lint:fix:app": "eslint app lib --ext .ts,.tsx --fix",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"lint:app": "eslint app lib --ext .ts,.tsx",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit --project tsconfig.node.json",
"format:app": "prettier app lib --check",
"format": "prettier . --check",
"runAllTests": "bun runLibTests && bun runServerTests && bun runAppTests && bun runNativeTests",
"runLibTests": "find lib -name \"*.test.ts\" | xargs -I {} sh -c 'bun test --preload lib/__tests__/setup.ts {} || exit 255'",
"runServerTests": "find server/src -name \"*.test.ts\" | xargs -I {} sh -c 'bun test {} || exit 255'",
"runAppTests": "find app -name \"*.test.ts\" | xargs -I {} sh -c 'bun test --preload lib/__tests__/setup.ts {} || exit 255'",
"runNativeTests": "cd native && cargo test --workspace --quiet",
"runTest": "bun test --preload lib/__tests__/setup.ts",
"format:native": "cd native && cargo fmt --all -- --check",
"format:fix:native": "cd native && cargo fmt --all",
"lint:native": "cd native && cargo clippy --workspace --all-targets -- -D warnings",
"lint:fix:native": "cd native && cargo clippy --workspace --all-targets --fix --allow-dirty --allow-staged",
"clean": "rm -rf node_modules dist .vite",
"clean:ito-app-data": "bun run scripts/clean-app-data.js",
"build:rust:mac": "bash ./build-binaries.sh --mac",
"build:rust:mac:x64": "bash ./build-binaries.sh --mac --x64",
"build:rust:win": "bash ./build-binaries.sh --windows",
"build:win": "bash ./build-app.sh windows",
"build:mac": "bash ./build-app.sh mac",
"generate:constants": "bun scripts/generate-constants.js",
"build:app": "bash ./build-app.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/heyito/ito"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
},
"dependencies": {
"@auth0/auth0-react": "^2.3.0",
"@bufbuild/protobuf": "^2.6.0",
"@connectrpc/connect": "^2.0.2",
"@connectrpc/connect-node": "^2.0.2",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/lab": "^7.0.0-beta.13",
"@mui/material": "^7.1.1",
"@mynaui/icons-react": "^0.3.8",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/resources": "^1.25.0",
"@opentelemetry/sdk-node": "^0.54.0",
"@opentelemetry/semantic-conventions": "^1.25.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.7",
"@sentry/electron": "^6.9.0",
"@sentry/vite-plugin": "^4.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compromise": "^14.14.4",
"dotenv": "^17.0.1",
"electron-log": "^5.4.1",
"electron-store": "^8.1.0",
"electron-updater": "^6.6.8",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.511.0",
"node-machine-id": "^1.1.12",
"posthog-js": "^1.269.1",
"react-router-dom": "^7.6.2",
"sqlite3": "^5.1.7",
"tailwind-merge": "^3.3.0",
"tw-animate-css": "^1.3.2",
"uuid": "^11.1.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/rebuild": "^4.0.1",
"@eslint/js": "^9.28.0",
"@rushstack/eslint-patch": "^1.11.0",
"@sinonjs/fake-timers": "^14.0.0",
"@tailwindcss/vite": "^4.1.8",
"@types/bun": "^1.2.19",
"@types/node": "^22.15.29",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@types/sinonjs__fake-timers": "^8.1.5",
"@vitejs/plugin-react": "^4.5.0",
"bun-types": "^1.2.19",
"electron": "^37.2.6",
"electron-builder": "^26.0.20",
"electron-vite": "^3.1.0",
"eslint": "^9.28.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"framer-motion": "^12.15.0",
"happy-dom": "^20.0.10",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"release-it": "^19.0.4",
"semantic-release": "^24.2.7",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vite": "^6.3.5"
},
"packageManager": "yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71"
}