-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "vite-plugin-babel",
"version": "1.3.0",
"description": "Runs Babel in Vite during all commands",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"files": [
"/dist"
],
"scripts": {
"clean": "rm -rf dist",
"dev": "rollup -c rollup.config.ts --watch --configPlugin typescript",
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"prepare": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owlsdepartment/vite-plugin-babel.git"
},
"author": "Miłosz Mandowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/owlsdepartment/vite-plugin-babel/issues"
},
"homepage": "https://github.com/owlsdepartment/vite-plugin-babel#readme",
"keywords": [
"vite-plugin",
"vite",
"babel"
],
"devDependencies": {
"@babel/core": "^7.23.6",
"@rollup/plugin-typescript": "^11.1.5",
"@types/babel__core": "^7.20.5",
"@types/node": "^20.10.4",
"rollup": "^4.8.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^6.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"vite": "^2.7.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
}
}