-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) 路 2.54 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) 路 2.54 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
{
"name": "unplugin-solid",
"version": "2.0.0",
"packageManager": "pnpm@11.13.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.mjs",
"./astro": "./dist/astro.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./types": "./dist/types.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": "^22.12.0 || ^24.0.0 || ^26.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint . --fix && prettier . --write",
"release": "bumpp --commit --push --tag",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@babel/core": "^7.29.7",
"babel-preset-solid": "^1.9.12",
"merge-anything": "^6.0.6",
"solid-refresh": "^0.7.8",
"unplugin": "^3.3.0",
"vitefu": "^1.1.3"
},
"devDependencies": {
"@so1ve/eslint-config": "^4.6.2",
"@so1ve/prettier-config": "^4.6.2",
"@sxzz/test-utils": "^0.5.18",
"@types/babel__core": "^7.20.5",
"@types/node": "^26.1.1",
"bumpp": "^11.1.0",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"prettier": "^3.9.5",
"rollup": "^4.62.2",
"solid-js": "^1.9.14",
"tsdown": "^0.22.7",
"typescript": "^6.0.3",
"unplugin-oxc": "^0.6.1",
"vite": "^8.1.4",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.1.10",
"webpack": "^5.108.4"
},
"peerDependencies": {
"@testing-library/jest-dom": "^5.16.6 || ^5.17.0 || ^6.0.0",
"solid-js": "^1.9.9",
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"@testing-library/jest-dom": {
"optional": true
},
"vite": {
"optional": true
}
}
}