forked from dan-online/bunnycdn-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
{
"name": "bunnycdn-stream",
"version": "2.1.2",
"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",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist node_modules/.cache",
"lint": "eslint src tests --ext ts --fix",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"test": "vitest run",
"update": "yarn upgrade-interactive",
"build": "rollup -c rollup.bundle.mjs",
"docs": "cd src/; typedoc --plugin typedoc-plugin-markdown --out ../docs ./index.ts",
"release": "npm publish",
"prepublishOnly": "rollup-type-bundler",
"husky": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@favware/npm-deprecate": "^1.0.7",
"@favware/rollup-type-bundler": "^2.0.0",
"@sapphire/eslint-config": "~4.3.8",
"@sapphire/ts-config": "^3.3.4",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitest/coverage-c8": "^0.28.4",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-circus": "^29.4.2",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"release-it": "^15.6.0",
"rimraf": "^4.1.2",
"rollup": "^3.15.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-version-injector": "^1.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.25",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=16",
"npm": ">=6"
},
"keywords": [],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": "eslint --fix --ext ts"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.3.2",
"file-type": "^16.5.4"
}
}