update: hooks, web

This commit is contained in:
Vick Scarlet
2026-08-11 02:17:31 +08:00
parent 727fe5de77
commit 5353edd6a1
67 changed files with 2339 additions and 2243 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"name": "@remake/hooks",
"type": "module",
"version": "3.0.0",
"author": "Vick Scarlet <vick@syaro.io>",
"main": "./src/index.ts",
"scripts": {
"lint": "bunx --bun eslint",
"test": "bun test"
},
"dependencies": {
"@remake/core": "workspace:*",
"@remake/data": "workspace:*",
"@remake/vitex": "workspace:*"
},
"peerDependencies": {
"jotai": "^2.20.2",
"react": "^19.2.8"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.11.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.18",
"eslint-config-react": "^1.1.7"
},
"eslintConfig": {
"extends": "react"
},
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
},
"./*": {
"import": "./src/*.ts",
"types": "./src/*.ts"
}
}
}