-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 KB
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
{
"name": "@bloodyowl/request",
"version": "3.3.0",
"description": "Wrapper for fetch with better data-structures",
"type": "module",
"main": "dist/src/Request.js",
"types": "dist/src/Request.d.ts",
"repository": "git@github.com:bloodyowl/request.git",
"author": "Matthias Le Brun <bloodyowl@icloud.com>",
"license": "MIT",
"files": [
"LICENSE",
"dist/src",
"README.md"
],
"keywords": [
"typescript",
"boxed",
"request",
"xhr"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"prettier": {
"trailingComma": "all",
"semi": false
},
"scripts": {
"build": "bun clean && tsc",
"clean": "rm -rf dist",
"format": "prettier '**/*' -u -w",
"prepack": "bun test && bun run build",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@bloodyowl/boxed": "^3.3.1",
"@types/bun": "1.3.11",
"jsdom": "^24.0.0",
"microbundle": "^0.15.1",
"prettier": "^3.2.5",
"typescript": "^6.0.0"
},
"peerDependencies": {
"@bloodyowl/boxed": ">=3.3.1"
}
}