-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
114 lines (114 loc) · 3.5 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
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
{
"name": "modv",
"productName": "modV",
"description": "modular audio visualisation powered by JavaScript",
"author": "vcync",
"version": "3.20.0",
"private": true,
"homepage": "https://modv.vcync.gl/",
"repository": {
"type": "git",
"url": "git+https://github.com/vcync/modV.git"
},
"bugs": {
"url": "https://github.com/vcync/modV/issues"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps && patch-package",
"postuninstall": "electron-builder install-app-deps",
"test:e2e": "npx playwright test"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"animated-gif-detector": "^1.2.0",
"animejs": "3.2.1",
"canvas-text-wrapper": "github:cyberj/canvas-text-wrapper#master",
"color": "^3.1.2",
"dotenv": "^8.2.0",
"electron-updater": "^4.3.1",
"fluent-ffmpeg": "^2.1.2",
"fuse.js": "^6.2.1",
"golden-layout": "^1.5.9",
"grandiose": "github:vcync/grandiose#feat/workerCompatibility",
"hapticjs": "^1.0.7",
"interactive-shader-format": "github:vcync/interactive-shader-format-js#78b62b6f4c787b870852df4c8e7b1131e331d8a6",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"mathjs": "^7.5.1",
"meyda": "^5.6.0",
"mkdirp": "^0.5.1",
"npm": "6.14.6",
"nwjs-menu-browser": "^1.0.0",
"ospath": "^1.2.2",
"patch-package": "^6.2.2",
"pex-context": "^2.10.2",
"promise-worker": "^2.0.1",
"promise-worker-transferable": "^1.0.4",
"recursive-deps": "^1.1.1",
"stream-to-blob": "^2.0.0",
"tap-tempo": "^0.1.1",
"three": "^0.131.3",
"uuid": "^9.0.0",
"vue": "^2.7.14",
"vue-class-component": "^7.2.3",
"vue-color": "^2.7.1",
"vue-fragment": "^1.5.1",
"vue-golden-layout": "^2.1.0",
"vue-property-decorator": "^8.3.0",
"vue-smooth-dnd": "^0.8.1",
"vuex": "^3.6.2",
"vuex-persistedstate": "^4.0.0-beta.3",
"webpack": "^4.43.0",
"webpack-3": "npm:webpack@3.12.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@playwright/test": "^1.31.2",
"@semantic-release/git": "^9.0.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/runtime-dom": "^3.2.47",
"babel-eslint": "^10.0.3",
"babel-loader": "^9.1.2",
"core-js": "^3.19.1",
"electron": "31.3.1",
"electron-builder": "^22.9.1",
"electron-notarize": "^1.2.2",
"electron-playwright-helpers": "^1.5.3",
"eslint": "^5.16.0",
"eslint-plugin-no-for-each": "^0.1.14",
"eslint-plugin-vue": "^5.2.3",
"lint-staged": "^8.2.1",
"node-loader": "^0.6.0",
"playwright": "^1.31.2",
"playwright-core": "^1.31.2",
"sass-loader": "^7.3.1",
"text-loader": "0.0.1",
"vue-cli-plugin-electron-builder": "3.0.0-alpha.4",
"vue-template-babel-compiler": "^2.0.0",
"vue-template-compiler": "^2.7.14",
"vuex-localstorage": "^1.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"resolutions": {
"electron-builder": "23.0.2",
"@achrinza/node-ipc": "9.2.7"
}
}