-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "vite-plugin-compiled-react",
"version": "1.1.3",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"keywords": [
"@compiled/react",
"vite"
],
"repository": {
"type": "github",
"url": "https://github.com/nitedani/vite-plugin-compiled-react"
},
"scripts": {
"build": "rimraf lib && tsc -b"
},
"exports": {
"import": "./lib/index.js"
},
"files": [
"lib"
],
"dependencies": {
"@babel/types": "^7.23.3",
"@compiled/babel-plugin": "^0.26.1",
"@compiled/babel-plugin-strip-runtime": "^0.25.0",
"babel-plugin-module-resolver": "^5.0.0"
},
"peerDependencies": {
"vite": "*",
"@compiled/react": "*",
"@vitejs/plugin-react": "*"
},
"devDependencies": {
"@compiled/react": "^0.16.4",
"@types/node": "^20.4.10",
"rimraf": "^3.0.2",
"typescript": "^5.2.2",
"@types/react": "^18.2.0",
"@vitejs/plugin-react": "^4.2.1"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
}
}