-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1011 Bytes
/
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
{
"name": "subsonic-api-wrapper",
"version": "0.0.7",
"description": "Subsonic API wrapper for Node written in Typescript",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"scripts": {
"build": "unbuild",
"build:dev": "unbuild --stub",
"prepare": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node-fetch": "^2.6.2",
"@types/xml2js": "^0.4.11",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.7",
"tslib": "^2.4.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"typescript": "^5.6.3",
"unbuild": "^2.0.0"
}
}