-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "elevenscribe",
"private": true,
"version": "0.3.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky",
"lint": "eslint .",
"format": "prettier --write ."
},
"lint-staged": {
"src/**/*.{ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": "prettier --write"
},
"dependencies": {
"@elevenlabs/elevenlabs-js": "^2.45.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2",
"@tauri-apps/plugin-opener": "^2",
"vue": "^3.5.13"
},
"devDependencies": {
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-plugin-vue": "^9",
"husky": "^9",
"lint-staged": "^15",
"prettier": "^3",
"typescript": "~5.6.2",
"typescript-eslint": "^8",
"vite": "^6.0.3",
"vue-tsc": "^2.1.10"
}
}