-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 969 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 969 Bytes
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
{
"name": "babel-plugin-solid-undestructure",
"description": "A Babel plugin for SolidJS that allows you to destructure component props without losing reactivity.",
"version": "1.1.0",
"main": "src/index.cjs",
"types": "src/index.d.ts",
"type": "module",
"scripts": {
"test": "uvu tests",
"playground": "node playground.cjs"
},
"peerDependencies": {
"solid-js": "^1.2.4"
},
"dependencies": {
"@rollup/plugin-babel": "^5.3.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/generator": "^7.20.5",
"@babel/parser": "^7.20.5",
"@babel/plugin-syntax-typescript": "^7.20.0",
"@babel/traverse": "^7.20.5",
"@babel/types": "^7.20.5",
"uvu": "^0.5.6"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orenelbaum/babel-plugin-solid-undestructure"
},
"author": "Oren Elbaum",
"keywords": [
"babel",
"babel-plugin",
"solid",
"solid-js",
"destructure",
"undestructure",
"macro"
]
}