-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.71 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
71
72
73
74
{
"name": "obs-layout",
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"version": "0.1.0",
"main": "packages/main/dist/index.cjs",
"repository": "[email protected]:grantjbutler/obs-layout.git",
"author": "Grant J. Butler <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "cross-env MODE=production npm run build && electron-builder build --config .electron-builder.config.js --dir --config.asar=false",
"test": "npm run test:main && npm run test:preload && npm run test:renderer && npm run test:e2e",
"test:e2e": "npm run build && vitest run",
"test:main": "vitest run -r packages/main --passWithNoTests",
"test:preload": "vitest run -r packages/preload --passWithNoTests",
"test:renderer": "vitest run -r packages/renderer --passWithNoTests",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"typecheck:main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck:preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck:renderer": "vue-tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck:main && npm run typecheck:preload && npm run typecheck:renderer"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@tailwindcss/forms": "^0.4.0",
"@types/lodash": "^4.14.178",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@vitejs/plugin-vue": "2.1.0",
"@vue/test-utils": "2.0.0-rc.18",
"autoprefixer": "^10.4.2",
"cross-env": "7.0.3",
"electron": "^19.0.0",
"electron-builder": "23.3.3",
"electron-devtools-installer": "3.2.0",
"electron-notarize": "^1.1.1",
"eslint": "^8.8.0",
"eslint-plugin-vue": "^8.7.1",
"happy-dom": "2.31.1",
"nano-staged": "0.5.0",
"playwright": "1.18.1",
"postcss": "^8.4.6",
"simple-git-hooks": "2.7.0",
"tailwindcss": "^3.0.19",
"typescript": "4.5.5",
"vite": "2.9.15",
"vitest": "0.2.7",
"vue-tsc": "0.31.2"
},
"dependencies": {
"@headlessui/vue": "^1.4.3",
"@heroicons/vue": "^1.0.5",
"@vueuse/core": "^7.5.5",
"data-uri-to-buffer": "^4.0.0",
"electron-updater": "4.6.5",
"image-size": "^1.0.1",
"lodash": "^4.17.21",
"obs-websocket-js": "^4.0.3",
"on-change": "^4.0.0",
"pinia": "^2.0.11",
"uuid": "^8.3.2",
"vue": "3.2.30",
"vue3-click-away": "^1.2.1"
}
}