-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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
{
"name": "spotify.ts",
"version": "1.3.0",
"description": "An easy to use, object oriented API wrapper for the Spotify Web API.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/cjs/index.d.ts",
"repository": "https://github.com/spotifyts/spotify.ts",
"author": "FC5570",
"license": "MIT",
"exports": {
"require": {
"default": "./dist/cjs/index.js"
},
"import": {
"default": "./dist/esm/index.mjs"
}
},
"scripts": {
"build": "yarn tsup",
"format": "yarn prettier --write",
"lint": "yarn eslint . --fix",
"test": "yarn vitest",
"coverage": "yarn test --coverage",
"prepublishOnly": "yarn build",
"prepare": "yarn husky install",
"bump": "yarn cliff-jumper",
"release": "git push && git push --tags && npm publish"
},
"dependencies": {
"@sapphire/async-queue": "^1.5.3"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md",
"!dist.tsconfig.tsbuildinfo"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": "yarn lint"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@4.5.0",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@favware/cliff-jumper": "^4.1.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.7.4",
"esbuild-plugin-file-path-extensions": "^2.1.3",
"eslint": "^8.57.1",
"git-cliff": "^2.6.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}