-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 867 Bytes
/
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
{
"name": "@aryzing/bun-mock-fetch",
"version": "0.2.2",
"author": "Eduard Bardají Puig <@aryzing>",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/aryzing/bun-mock-fetch.git"
},
"scripts": {
"build": "tsc",
"check-format": "prettier --check .",
"format": "prettier --write .",
"check-types": "tsc --noEmit",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm --quiet",
"ci": "bun run build && bun run check-format && bun run check-exports"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@types/bun": "latest",
"prettier": "^3.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"license": "MIT",
"dependencies": {
"glob": "^11.0.0",
"minimatch": "^10.0.1"
}
}