-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "apple-bridge",
"version": "1.3.3",
"description": "Retrieve data from Apple Services on macOS and Windows",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"build": "tsc && npm run copy",
"copy": "copyfiles -u 1 -a src/darwin/osascript/*.scpt src/win32/wscript/*.js dist/",
"test": "npm run build && node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZephraCloud/Apple-Bridge.git"
},
"keywords": [
"apple",
"apple music",
"itunes"
],
"author": "zephra",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ZephraCloud/Apple-Bridge/issues"
},
"homepage": "https://github.com/ZephraCloud/Apple-Bridge#readme",
"dependencies": {
"child-process-promise": "^2.2.1"
},
"devDependencies": {
"@types/child-process-promise": "^2.2.2",
"@types/node": "^17.0.35",
"copyfiles": "^2.4.1",
"typescript": "^5.1.3"
},
"files": [
"dist"
]
}