-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 1.82 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
{
"name": "bunnycdn-stream",
"version": "2.4.1",
"description": "A simple, lightweight, and easy to use library for BunnyCDN's Stream API",
"author": "DanCodes <[email protected]> (https://dancodes.online/)",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rimraf dist node_modules/.cache",
"lint": "biome check src tests",
"test": "vitest run",
"update": "yarn upgrade-interactive",
"build": "tsup",
"docs": "cd src/; typedoc --plugin typedoc-plugin-markdown --out ../docs ./index.ts",
"release": "npm publish",
"husky": "husky install"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@favware/npm-deprecate": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@types/rimraf": "^4.0.5",
"@vitest/coverage-v8": "^2.1.5",
"dotenv": "^16.4.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.2.10",
"release-it": "^17.10.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.7.2",
"vitest": "^2.1.5"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=16",
"npm": ">=6"
},
"keywords": [],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": "biome check --apply"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.7.7"
}
}