-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
113 lines (113 loc) · 2.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "mande",
"version": "2.0.9",
"description": "800 bytes modern wrapper around fetch with smart defaults",
"packageManager": "pnpm@9.15.3",
"type": "module",
"main": "index.cjs",
"module": "dist/mande.js",
"unpkg": "dist/mande.iife.js",
"jsdelivr": "dist/mande.iife.js",
"types": "dist/mande.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/mande.d.ts",
"node": {
"import": {
"production": "./dist/mande.prod.js",
"development": "./dist/mande.js",
"default": "./dist/mande.js"
},
"require": {
"production": "./dist/mande.prod.cjs",
"development": "./dist/mande.cjs",
"default": "./index.cjs"
}
},
"import": "./dist/mande.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"scripts": {
"lint": "prettier -c --parser typescript \"{src,__tests__}/**/*.[jt]s?(x)\"",
"lint:fix": "pnpm run lint --write",
"test:unit": "vitest",
"release": "bash scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"dev": "vitest",
"pretest": "pnpm run lint",
"test": "pnpm run test:unit run && pnpm run build",
"size": "size-limit",
"build": "rollup -c rollup.config.mjs",
"build:pkgs": "pnpm run --stream --parallel --filter './nuxt-module' build",
"build:dts": "api-extractor run --local --verbose",
"docs": "typedoc"
},
"files": [
"index.js",
"index.cjs",
"dist/*.js",
"dist/*.mjs",
"dist/*.cjs",
"dist/mande.d.ts",
"nuxt/*.js",
"nuxt/*.d.ts",
"README.md"
],
"keywords": [
"fetch",
"browser",
"client",
"request",
"api",
"get",
"ajax",
"fetchival",
"axios",
"alternative"
],
"size-limit": [
{
"name": "Mande",
"path": "dist/mande.prod.js",
"import": "{ mande }"
}
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "^7.48.1",
"@nuxt/types": "^2.18.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@size-limit/preset-small-lib": "^11.1.6",
"@vitest/coverage-v8": "^2.1.8",
"camelcase": "^8.0.0",
"conventional-changelog-cli": "^5.0.0",
"happy-dom": "^16.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.29.2",
"rollup-plugin-typescript2": "^0.36.0",
"size-limit": "^11.1.6",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/mande.git"
},
"bugs": {
"url": "https://github.com/posva/mande/issues"
},
"homepage": "https://github.com/posva/mande#readme"
}