-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.41 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.41 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "unplugin-solid",
"version": "1.0.0",
"packageManager": "pnpm@10.23.0",
"author": "Ray <i@mk1.io> (@so1ve)",
"type": "module",
"description": "Transform Solid.js code in various bundlers powered by unplugin",
"keywords": [
"astro",
"rolldown",
"rollup",
"rspack",
"solid",
"solid.js",
"solidjs",
"transform",
"unplugin",
"vite",
"webpack"
],
"homepage": "https://github.com/unplugin/unplugin-solid#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-solid.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-solid/issues"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./astro": "./dist/astro.js",
"./esbuild": "./dist/esbuild.js",
"./package.json": "./package.json",
"./rolldown": "./dist/rolldown.js",
"./rollup": "./dist/rollup.js",
"./rspack": "./dist/rspack.js",
"./types": "./dist/types.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"lint": "eslint . || prettier . --check",
"lint:fix": "eslint . --fix || prettier . --write",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "vitest",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@babel/core": "^7.28.3",
"@rollup/pluginutils": "^5.2.0",
"babel-preset-solid": "^1.9.9",
"merge-anything": "^6.0.6",
"solid-refresh": "^0.7.5",
"unplugin": "^2.3.10",
"vitefu": "^1.1.1"
},
"devDependencies": {
"@antfu/ni": "^25.0.0",
"@so1ve/eslint-config": "^3.9.0",
"@so1ve/prettier-config": "^3.9.0",
"@sxzz/test-utils": "^0.5.10",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.3.0",
"@typescript/native-preview": "7.0.0-dev.20251125.1",
"bumpp": "^10.2.3",
"esbuild": "^0.25.9",
"eslint": "^9.34.0",
"prettier": "^3.6.2",
"rollup": "^4.50.0",
"solid-js": "^1.9.9",
"tsdown": "^0.14.2",
"typescript": "^5.9.2",
"unplugin-oxc": "^0.5.1",
"vite": "^7.1.3",
"vite-plugin-solid": "^2.11.8",
"vitest": "^3.2.4",
"webpack": "^5.82.0"
},
"peerDependencies": {
"solid-js": "^1.9.9"
}
}