-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.31 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
{
"name": "wavsyn",
"version": "1.0.15",
"description": "Tools for audio processing, creating disk images, and editing programs on the Ensoniq Mirage.",
"main": "main.js",
"scripts": {
"start": "electron-forge start",
"test": "jest test",
"lint": "eslint app/** -f html -o ./lint/report.html --cache:true",
"package": "electron-forge package",
"publish": "electron-forge publish",
"make": "electron-forge make --targets @electron-forge/maker-squirrel,@electron-forge/maker-zip",
"make-mac-deb": "electron-forge make --targets @electron-forge/maker-dmg,@electron-forge/maker-deb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mogrifier/wavsyn.git"
},
"keywords": [
"mirage",
"ensoniq",
"wavetable",
"synthesizer",
"patch editor",
"electron",
"node js",
"javascript"
],
"author": "Erich Izdepski",
"license": "MIT",
"bugs": {
"url": "https://github.com/mogrifier/wavsyn/issues"
},
"homepage": "https://github.com/mogrifier/wavsyn#readme",
"devDependencies": {
"@electron-forge/cli": "^6.1.1",
"@electron-forge/maker-deb": "^6.1.1",
"@electron-forge/maker-rpm": "^6.1.1",
"@electron-forge/maker-squirrel": "^6.1.1",
"@electron-forge/maker-zip": "^6.1.1",
"@electron-forge/publisher-github": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"electron": "^13.3.0",
"eslint": "^7.32.0",
"jest": "^27.0.3"
},
"dependencies": {
"@electron-forge/maker-dmg": "^6.1.1",
"electron-log": "^4.3.5",
"electron-squirrel-startup": "^1.0.0",
"factorial": "^2.0.0",
"fix": "^0.0.6",
"int24": "0.0.1",
"meow": "^3.7.0",
"midi": "^1.0.4",
"nan": "^2.14.2",
"update-electron-app": "^2.0.1"
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "wavsyn",
"description": "Tools for audio processing, creating disk images, and editing programs on the Ensoniq Mirage.",
"author": "Erich Izdepski"
}
},
{
"name": "@electron-forge/maker-deb",
"config": {
"name": "wavsyn",
"description": "Tools for audio processing, creating disk images, and editing programs on the Ensoniq Mirage.",
"author": "Erich Izdepski"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {
"name": "wavsyn",
"description": "Tools for audio processing, creating disk images, and editing programs on the Ensoniq Mirage.",
"author": "Erich Izdepski"
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"name": "wavsyn",
"description": "Tools for audio processing, creating disk images, and editing programs on the Ensoniq Mirage.",
"author": "Erich Izdepski"
}
}
],
"publishers": [
{
"name": "@electron-forge/publisher-github",
"config": {
"repository": {
"owner": "mogrifier",
"name": "wavsyn"
},
"prerelease": "true"
}
}
]
}
}
}