-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
{
"name": "babel-plugin-transform-vite-meta-hot",
"version": "0.0.0-semantically-released",
"description": "babel plugin that emulates vite's import.meta.hot functionality",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpenSourceRaidGuild/babel-vite.git"
},
"keywords": [
"babel",
"vite",
"plugin",
"import",
"meta",
"hot"
],
"author": "Kelvin Zhang <me@kelvinzhang.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenSourceRaidGuild/babel-vite/issues"
},
"homepage": "https://github.com/OpenSourceRaidGuild/babel-vite#readme",
"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"
}
}