-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
107 lines (107 loc) · 2.57 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
{
"name": "unplugin-react-components",
"type": "module",
"version": "0.1.4",
"packageManager": "pnpm@7.1.1",
"description": "On-demand components auto importing for React",
"license": "MIT",
"homepage": "https://github.com/snowingfox/unplugin-react-components#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/snowingfox/unplugin-react-components.git"
},
"bugs": {
"url": "https://github.com/snowingfox/unplugin-react-components/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"transform",
"react",
"components"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"require": "./dist/vite.cjs",
"import": "./dist/vite.js"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.js"
},
"./types": {
"types": "./dist/types.d.ts",
"require": "./dist/types.cjs",
"import": "./dist/types.js"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint --fix --ext .js,.ts,.tsx src/**/**",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"dependencies": {
"@antfu/utils": "^0.5.2",
"@babel/parser": "^7.19.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@rollup/pluginutils": "^5.0.2",
"chokidar": "^3.5.3",
"estree-walker": "^3.0.1",
"fast-glob": "^3.2.12",
"local-pkg": "^0.4.2",
"magic-string": "^0.26.7",
"unplugin": "^0.9.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@types/node": "^18.8.0",
"antd": "^4.23.6",
"bumpp": "^8.2.1",
"chalk": "^5.0.1",
"eslint": "8.15.0",
"esno": "^0.16.3",
"fast-glob": "^3.2.12",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"tsup": "^6.2.3",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vite-plugin-inspect": "^0.7.5",
"vitest": "^0.23.4",
"webpack": "^5.74.0"
}
}