forked from OpenSourceRaidGuild/babel-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "@fond-of/babel-preset-vite",
"version": "0.0.0-semantically-released",
"description": "babel preset that emulates vite's non-standard functionality",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"keywords": [
"babel",
"vite",
"preset",
"env",
"glob",
"hot"
],
"author": "Michael Peyper <[email protected]>",
"license": "MIT",
"scripts": {
"build": "kcd-scripts build --out-dir lib",
"test": "kcd-scripts test"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@types/babel-plugin-tester": "^9.0.1",
"babel-plugin-tester": "^10.0.0",
"kcd-scripts": "^15.0.0",
"typescript": "^5.0.3"
},
"dependencies": {
"@babel/runtime": "^7.13.9",
"@types/babel__core": "^7.1.12",
"@fond-of/babel-plugin-transform-vite-meta-env": "^0.0.0-semantically-released",
"@fond-of/babel-plugin-transform-vite-meta-glob": "^0.0.0-semantically-released",
"@fond-of/babel-plugin-transform-vite-meta-hot": "^0.0.0-semantically-released"
}
}