-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "respinner",
"version": "4.0.3",
"description": "React SVG spinner components",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"prepublishOnly": "npm run clean && npm run build",
"build:docs": "pnpm build && next build ./docs",
"build": "bunchee --no-dts && pnpm copy-types",
"copy-types": "cp ./index.d.ts ./dist/index.d.ts && cp ./index.d.ts ./dist/index.d.mts",
"build:watch": "pnpm build --watch",
"dev": "next dev ./docs"
},
"sideEffects": false,
"files": [
"*.md",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/huozhi/respinner.git"
},
"keywords": [
"react",
"loading"
],
"author": "huozhi",
"license": "MIT",
"homepage": "https://github.com/huozhi/respinner#readme",
"devDependencies": {
"bunchee": "^5.4.0",
"next": "14.2.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"respinner": "link:./"
},
"peerDependencies": {
"react": "*"
},
"packageManager": "[email protected]"
}