forked from SukkaW/foxact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.87 KB
/
package.json
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
{
"name": "foxact",
"version": "0.2.41",
"private": true,
"description": "React Hooks/Utils done right. For browser, SSR, and React Server Components.",
"homepage": "https://foxact.skk.moe",
"repository": {
"type": "git",
"url": "git+https://github.com/SukkaW/foxact.git"
},
"bugs": {
"url": "https://github.com/SukkaW/foxact/issues"
},
"files": [
"**"
],
"sideEffects": false,
"scripts": {
"lint": "eslint --format=sukka .",
"build": "rollup -c rollup.config.ts --configPlugin swc3 --bundleConfigAsCjs",
"postbuild": "node -r @swc-node/register tools/postbuild.ts",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"React",
"Hooks"
],
"author": "Sukka <https://skk.moe>",
"license": "MIT",
"dependencies": {
"client-only": "^0.0.1",
"server-only": "^0.0.1"
},
"devDependencies": {
"@eslint-sukka/node": "^6.7.0",
"@eslint-sukka/react": "^6.7.0",
"@napi-rs/magic-string": "^0.3.4",
"@package-json/types": "^0.0.11",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.35",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"brotli-size": "^4.0.0",
"browserslist": "^4.24.0",
"eslint": "^9.12.0",
"eslint-config-sukka": "^6.7.0",
"eslint-formatter-sukka": "^6.7.0",
"fdir": "^6.4.0",
"gzip-size": "6.0.0",
"next": "^14.2.15",
"react-router-dom": "^6.26.2",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-swc3": "^0.12.1",
"rollup-preserve-directives": "^1.1.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "*"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"has": "npm:@nolyfill/has@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.groupby": "npm:@nolyfill/object.groupby@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"rollup": "$rollup"
}
}
}