-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.91 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@syncfm/applemusic-api",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.0.4",
"author": "xwxfox",
"license": "MIT",
"description": "Unofficial Apple Music API client with typed helpers around their endpoints with shared configuration, logging, and token management.",
"scripts": {
"build": "rm -rf ./dist && tsc --build --verbose --diagnostics && tsc-alias",
"build:all": "bun run build && bun run docs:build",
"test": "vitest run --coverage",
"dtest": "bun run src/example.ts",
"type-check": "tsc --noEmit",
"lint": "biome lint . --write",
"format": "biome format . --write",
"knip": "knip",
"check": "bun run knip && biome check --write && bun run type-check && bun run test",
"docs:build": "bun run test && cd docs && bun run build",
"docs:dev": "cd docs && bun run dev",
"docs:serve": "cd docs && bun run serve"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sync-fm/applemusic-api.git"
},
"bugs": {
"url": "https://github.com/sync-fm/applemusic-api/issues"
},
"homepage": "https://am-docs.syncfm.dev/",
"keywords": [
"music",
"typescript",
"library",
"data-processing",
"applemusic"
],
"dependencies": {
"axios": "^1.11.0",
"tough-cookie": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@types/bun": "latest",
"@types/node": "^24.7.0",
"@vitest/coverage-v8": "3.2.4",
"knip": "^5.64.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": "^5"
}
}