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
60 lines (60 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "@rolldown-plugin/solid",
"version": "0.1.0",
"description": "A Rolldown plugin for compiling SolidJS JSX/TSX files",
"repository": {
"type": "git",
"url": "git+https://github.com/gameroman/rolldown-plugin-solid.git"
},
"license": "MIT",
"author": "gameroman",
"type": "module",
"imports": {
"#universal-mode-renderer": "./tests/helpers/universal-mode-renderer.ts"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"format": "biome check --write --linter-enabled=false",
"lint": "biome check",
"prepublishOnly": "bun run build",
"test": "bun run build && bun test --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@babel/core": "^8.0.1",
"@babel/helper-module-imports": "^8.0.0",
"@babel/helper-plugin-utils": "^8.0.1",
"@babel/helper-validator-option": "^8.0.0",
"@babel/template": "^8.0.0",
"@babel/traverse": "^8.0.0",
"@babel/types": "^8.0.0",
"html-entities": "2.6.0",
"parse5": "^8.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@gameroman/config": "^0.2.0",
"@types/bun": "1.3.14",
"@types/node": "^26.0.0",
"solid-js": "1.9.13",
"tsdown": "0.22.3",
"typescript": "6.0.3"
},
"peerDependencies": {
"csstype": "^3.1.0",
"rolldown": "^1.0.0",
"seroval": "~1.5.0",
"solid-js": ">=1.9.13"
},
"engines": {
"node": "^22.18.0 || >=24.11.0"
}
}