-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "@swan-io/request",
"version": "1.0.6",
"description": "Wrapper for XMLHttpRequest with better data-structures",
"main": "dist/Request.js",
"module": "dist/Request.mjs",
"source": "src/Request.ts",
"types": "dist/Request.d.ts",
"repository": "[email protected]:swan-io/request.git",
"author": "Matthias Le Brun <[email protected]>",
"license": "MIT",
"files": [
"LICENSE",
"dist",
"README.md"
],
"keywords": [
"typescript",
"boxed",
"request",
"xhr"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"prettier": {
"trailingComma": "all"
},
"scripts": {
"build": "yarn clean && microbundle -f cjs,es",
"clean": "rm -rf dist",
"format": "prettier '**/*' -u -w",
"prepack": "yarn test && yarn build",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@swan-io/boxed": "^2.3.0",
"jsdom": "^24.0.0",
"microbundle": "^0.15.1",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"peerDependencies": {
"@swan-io/boxed": ">=2.2.1"
}
}