-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "babel-preset-moon",
"version": "3.0.4",
"description": "A modern Babel preset for tooling development.",
"keywords": [
"babel-preset",
"moon",
"node",
"env",
"typescript",
"react"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git@github.com:moonrepo/dev.git",
"directory": "packages/babel-preset"
},
"author": "Miles Johnson",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.12.0"
},
"peerDependencies": {
"@babel/core": ">=7.0.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-export-default-from": "^7.25.9",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"babel-plugin-conditional-invariant": "^4.0.1",
"babel-plugin-env-constants": "^4.0.1",
"babel-preset-solid": "^1.9.3"
},
"devDependencies": {
"@babel/core": "^7.26.0"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
},
"packemon": {
"format": "lib",
"platform": "node"
},
"exports": {
"./package.json": "./package.json",
"./*": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
}