-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "poru-spotify",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": " tsc && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"docs": "typedoc",
"lint": "eslint src/**/**.ts --ignore-path .gitignore",
"lint:fix": "eslint src/**/**.ts --ignore-path .gitignore --fix",
"test": "jest --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasop/poru-spotify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/parasop/poru-spotify/issues"
},
"homepage": "https://github.com/parasop/poru-spotify#readme",
"dependencies": {
"axios": "^1.5.0",
"cheerio": "^1.0.0-rc.12",
"poru": "github:parasop/poru",
"typescript": "^5.2.2",
"undici": "^5.23.0"
},
"devDependencies": {
"@types/node": "^18.17.14",
"gen-esm-wrapper": "^1.1.3"
}
}