forked from g-mero/rolldown-plugin-solid
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2 KB
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
{
"name": "@rolldown-plugin/solid",
"version": "0.0.4",
"description": "A Rolldown plugin for compiling SolidJS JSX/TSX files",
"license": "MIT",
"author": "gameroman",
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"imports": {
"#universal-mode-renderer": "./tests/helpers/universal-mode-renderer.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gameroman/rolldown-plugin-solid.git"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"lint": "biome check",
"format": "biome check --write --linter-enabled=false",
"test": "bun run build && bun test --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@babel/helper-plugin-utils": "^8.0.0-rc.3",
"@babel/helper-validator-option": "^8.0.0-rc.3",
"@babel/core": "^8.0.0-rc.3",
"@babel/helper-module-imports": "^8.0.0-rc.3",
"@babel/template": "^8.0.0-rc.3",
"@babel/traverse": "^8.0.0-rc.3",
"@babel/types": "^8.0.0-rc.3",
"html-entities": "2.6.0",
"parse5": "^8.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@gameroman/config": "^0.0.5",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"solid-js": "1.9.12",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"peerDependencies": {
"csstype": "^3.1.0",
"rolldown": "^1.0.0-rc.12",
"seroval": "~1.5.0",
"solid-js": ">=1.9.12"
},
"engines": {
"node": ">=22.12.0"
},
"overrides": {
"@babel/helper-plugin-utils": "8.0.0-rc.3",
"@babel/helper-validator-identifier": "8.0.0-rc.3",
"@babel/helper-validator-option": "8.0.0-rc.3",
"@babel/code-frame": "8.0.0-rc.3",
"@babel/core": "8.0.0-rc.3",
"@babel/helper-module-imports": "8.0.0-rc.3",
"@babel/parser": "8.0.0-rc.3",
"@babel/template": "8.0.0-rc.3",
"@babel/traverse": "8.0.0-rc.3",
"@babel/types": "8.0.0-rc.3"
}
}