-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "babel-plugin-reactivars-solid",
"version": "0.0.4",
"description": "A babel plugin that lets you use a Svelte-like syntax with SolidJS",
"main": "dist/index",
"types": "index.d.ts",
"scripts": {
"test": "uvu -r tsm tests",
"build": "tsc"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/generator": "^7.16.7",
"@babel/parser": "^7.16.7",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/traverse": "^7.16.7",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.14.2",
"ts-node": "^10.4.0",
"tsm": "^2.2.1",
"typescript": "^4.5.4",
"uvu": "^0.5.3",
"@babel/types": "^7.16.7"
},
"peerDependencies": {
"@babel/core": "^7.16",
"solid-js": "^1.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orenelbaum/babel-plugin-reactivars-solid"
},
"author": "Oren Elbaum",
"keywords": [
"babel",
"babel-plugin",
"solid",
"solid-js",
"react",
"reactivars",
"reactive variables"
]
}