-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.55 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
71
72
73
74
{
"name": "solid-register",
"version": "0.2.5",
"description": "integrated package to run solid browser code in node",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prettier": "prettier -w src/*.ts",
"test": "node ./test-examples.mjs"
},
"keywords": [
"solid.js",
"testing",
"node"
],
"author": "Alex Lohr",
"contributors": ["Sanich Kotikov"],
"license": "MIT",
"dependencies": {
"esbuild": "^0.14.38",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/babel__core": "^7.1.19",
"@types/babel__plugin-transform-runtime": "^7.9.2",
"@types/jsdom": "^16.2.14",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@babel/core": ">=7.0.0",
"babel-preset-solid": ">=1.0.0",
"@babel/register": ">=7.0.0",
"@babel/plugin-transform-runtime": ">=7.0.0",
"ts-node": ">=10.0.0",
"happy-dom": ">=2.0.0",
"jsdom": ">=18.0.0",
"linkedom": ">=0.10.0",
"postcss": ">=7.0.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"babel-preset-solid": {
"optional": true
},
"@babel/plugin-transform-runtime": {
"optional": true
},
"@babel/register": {
"optional": true
},
"ts-node": {
"optional": true
},
"happy-dom": {
"optional": true
},
"jsdom": {
"optional": true
},
"linkedom": {
"optional": true
},
"postcss": {
"optional": true
}
}
}