-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "fetcher",
"version": "3.16.10",
"description": "A modern HTTP client library based on fetch API",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"integration-test"
],
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:unit": "pnpm -r --filter=./packages/* test",
"test:it": "pnpm -r --filter=./integration-test test",
"lint": "pnpm -r lint",
"format": "prettier --write .",
"clean": "pnpm -r clean",
"init": "sh ./scripts/init.sh",
"update-version": "sh ./scripts/update-all-versions.sh",
"storybook": "storybook dev --docs -p 6006",
"build-storybook": "storybook build --docs"
},
"keywords": [
"fetcher",
"fetch"
],
"author": "Ahoo-Wang",
"license": "Apache-2.0",
"homepage": "https://github.com/Ahoo-Wang/fetcher",
"repository": {
"type": "git",
"url": "https://github.com/Ahoo-Wang/fetcher.git"
},
"bugs": {
"url": "https://github.com/Ahoo-Wang/fetcher/issues"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"@chromatic-com/storybook": "^5.1.2",
"@eslint/js": "catalog:",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-onboarding": "^10.3.6",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/react": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@vitest/browser": "catalog:",
"antd": "catalog:",
"eslint-plugin-storybook": "^10.3.6",
"globals": "catalog:",
"storybook": "^10.3.6",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"unplugin-dts": "catalog:",
"vite": "catalog:",
"vite-bundle-analyzer": "catalog:",
"vitest": "catalog:"
}
}