-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.64 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
{
"name": "@rolldown/plugin-react-signals-transform",
"version": "0.1.0",
"description": "Rolldown plugin for the React Signals transform",
"keywords": [
"plugin",
"react",
"rolldown",
"rolldown-plugin",
"signals"
],
"homepage": "https://github.com/rolldown/plugins/tree/main/packages/react-signals-transform#readme",
"bugs": {
"url": "https://github.com/rolldown/plugins/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rolldown/plugins.git",
"directory": "packages/react-signals-transform"
},
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.mjs",
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest --project react-signals-transform",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"rolldown-string": "^0.3.0"
},
"devDependencies": {
"@preact/signals-core": "^1.12.1",
"@preact/signals-react": "^3.9.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rolldown": "^1.0.0-rc.9",
"vite": "^8.0.0"
},
"peerDependencies": {
"@preact/signals-react": "^3.9.1",
"react": "^16.14.0 || 17.x || 18.x || 19.x",
"rolldown": "^1.0.0-rc.9",
"vite": "^8.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"engines": {
"node": ">=22.12.0 || ^24.0.0"
},
"compatiblePackages": {
"schemaVersion": 1,
"rollup": {
"type": "incompatible",
"reason": "Uses Rolldown-specific APIs"
}
}
}