-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "soundcloud-sync",
"description": "Sync your SoundCloud likes to local files",
"license": "MIT",
"type": "module",
"author": "realies",
"repository": {
"type": "git",
"url": "https://github.com/realies/soundcloud-sync.git"
},
"keywords": [
"soundcloud",
"download",
"sync",
"likes",
"music"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"soundcloud-sync": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' src/cli.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"browser-id3-writer": "^6.1.0"
}
}