-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1002 Bytes
/
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": "solid-reactor",
"version": "1.2.2",
"description": "A compiler from react to solid",
"info": "This compiler can convert most common parts of react components faithfully to solidjs components, and should just work with little tweaking",
"main": "dist/transform.js",
"module": "dist/transform.js",
"types": "./dist/transform.d.ts",
"bin": "./dist/cli.js",
"contributors": [
{
"name": "Cain Atkinson (yellowsink)",
"email": "[email protected]",
"url": "https://git.io/ysink"
}
],
"homepage": "https://github.com/yellowsink/solid-reactor",
"keywords": [
"solid",
"react",
"compiler",
"solidhack"
],
"author": "Yellowsink",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"prepublish": "tsc",
"test": "tsc && node dist/test.js"
},
"dependencies": {
"@swc/core": "^1.2.177",
"emitkit": "^1.3.0"
},
"devDependencies": {
"@types/node": "^17.0.31",
"typescript": "^4.6.4"
}
}