-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "librespot",
"version": "0.2.21",
"description": "A FOSS Spotify library.",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"files": [
"build/**/*",
"proto/**/*"
],
"repository": {
"type": "git",
"url": "https://git.gay/h/librespot-js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"default": "./build/index.js"
},
"./types": {
"types": "./build/utils/types.d.ts",
"import": "./build/utils/types.js"
},
"./rawtypes": {
"types": "./build/utils/rawtypes.d.ts",
"import": "./build/utils/rawtypes.js"
}
},
"author": "hazycora",
"license": "MIT",
"dependencies": {
"protobufjs": "^7.2.5",
"undici": "^5.27.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^4.9.5"
}
}