-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "bun-plugin-solid",
"description": "A plugin to compile Solid.js with Bun.",
"version": "1.0.0",
"author": {
"email": "[email protected]",
"name": "Dani Guardiola",
"url": "https://dio.la/"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepare": "tshy",
"publish": "changeset publish"
},
"dependencies": {
"@babel/core": ">=7.0.0",
"@babel/preset-typescript": ">=7.0.0",
"babel-preset-solid": ">=1.8.0"
},
"devDependencies": {
"@types/babel__core": ">=7.0.0",
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"bun-types": "latest",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.0.3",
"tshy": "^1.8.0",
"typescript": "^5.2.2"
},
"tshy": {
"dialects": [
"esm"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
}
}