@wq2/rolldown-plugin-solid-oxc 0.1.0-alpha.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +51 -0
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@wq2/rolldown-plugin-solid-oxc",
3
+ "version": "0.1.0-alpha.15",
4
+ "description": "Rolldown plugin for SolidJS using OXC-based compiler",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "publishConfig": {
10
+ "access": "public",
11
+ "provenance": true
12
+ },
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsc -p tsconfig.json",
24
+ "dev": "tsc -p tsconfig.json -w"
25
+ },
26
+ "keywords": [
27
+ "rolldown",
28
+ "rollup",
29
+ "plugin",
30
+ "solid",
31
+ "solidjs",
32
+ "jsx",
33
+ "oxc"
34
+ ],
35
+ "author": "SolidJS Contributors",
36
+ "license": "MIT",
37
+ "peerDependencies": {
38
+ "rolldown": ">=1",
39
+ "@wq2/solid-jsx-oxc": "*"
40
+ },
41
+ "peerDependenciesMeta": {
42
+ "rolldown": {
43
+ "optional": true
44
+ }
45
+ },
46
+ "devDependencies": {
47
+ "@wq2/solid-jsx-oxc": "*",
48
+ "@types/node": "^20.0.0",
49
+ "tsdown": "^0.21.7"
50
+ }
51
+ }