-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "react-safe-lazy",
"version": "0.1.0",
"description": "Safely use `React.lazy` with retry and reload strategies.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"author": "Silverhand Inc. <[email protected]>",
"homepage": "https://github.com/silverhand-io/react-safe-lazy",
"repository": {
"type": "git",
"url": "git+https://github.com/silverhand-io/react-safe-lazy.git"
},
"sideEffects": false,
"scripts": {
"build": "vite build",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest",
"prepack": "vitest --no-watch && pnpm build"
},
"keywords": [
"react",
"lazy",
"suspense",
"retry",
"reload"
],
"license": "MIT",
"devDependencies": {
"@silverhand/eslint-config": "^6.0.1",
"@silverhand/eslint-config-react": "^6.0.2",
"@silverhand/ts-config": "^6.0.0",
"@silverhand/ts-config-react": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.3.3",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^8.56.0",
"happy-dom": "^14.12.3",
"prettier": "^3.3.3",
"react": "18.0.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "4.0.0-beta.1",
"vitest": "^2.0.4"
},
"peerDependencies": {
"react": "^18.0.0"
},
"eslintConfig": {
"extends": "@silverhand/eslint-config-react"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"stylelint"
],
"allowedVersions": {
"react": "18"
}
}
},
"publishConfig": {
"access": "public"
}
}