-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.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
{
"name": "mimilab",
"version": "0.1.0",
"description": "耳コピアプリ - AI音楽キー・音階検出",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"build": "electron-builder --mac",
"build:dmg": "electron-builder --mac dmg",
"build:zip": "electron-builder --mac zip"
},
"author": "Czmirror",
"license": "MIT",
"build": {
"appId": "com.czmirror.mimilab",
"productName": "MimiLab",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"node_modules/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.music",
"icon": null,
"target": [
"dmg",
"zip"
]
},
"dmg": {
"title": "MimiLab",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.1.8",
"eslint": "^9.0.0"
},
"dependencies": {
"essentia.js": "^0.1.3",
"tonal": "^6.2.0"
}
}