-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@lionralfs/discogs-client",
"description": "A full-featured Discogs API v2.0 client library",
"version": "4.1.2",
"keywords": [
"discogs",
"api",
"client",
"oauth"
],
"homepage": "https://github.com/lionralfs/discogs-client",
"bugs": "https://github.com/lionralfs/discogs-client/issues",
"license": "MIT",
"author": "Lion Ralfs <[email protected]> (https://lionralfs.dev/)",
"main": "node-esm/index.js",
"browser": "browser/index.js",
"module": "node-esm/index.js",
"type": "module",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lionralfs/discogs-client.git"
},
"scripts": {
"test": "vitest run",
"coverage": "vitest run --coverage",
"prettier": "prettier --check **/**.{js,md,json}",
"lint": "eslint ./lib/**/*.ts",
"declaration:build": "rm -rf types && tsc -p tsconfig.json",
"clean": "rm -f commonjs/index.js && rm -f browser/index.js && rm -f node-esm/index.js",
"build": "npm run declaration:build && npm run clean && npm run build:all",
"build:all": "node build.js",
"prepare": "husky install",
"release": "npm run build && np"
},
"dependencies": {
"node-fetch": "^3.2.0"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.208.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitest/coverage-v8": "^2.0.3",
"esbuild": "^0.23.0",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.26.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"msw": "^2.1.5",
"np": "^10.0.0",
"prettier": "^3.0.0",
"typescript": "^5.2.2",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,md,json}": "prettier --write"
},
"files": [
"browser/index.js",
"browser/package.json",
"commonjs/index.js",
"commonjs/package.json",
"types",
"node-esm/index.js",
"lib/*",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}