-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
76 lines (66 loc) · 1.67 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
{
"name": "react-runtime-hooks-z",
"version": "1.0.0",
"description": "Lifecycle-aware, deterministic runtime hooks for React effects. Intent-first orchestration with precise dependency tracking and minimal re-renders.",
"license": "MIT",
"author": "Delpi.Kye",
"sideEffects": false,
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.esm.js",
"require": "./build/index.cjs.js"
}
},
"files": [
"build"
],
"scripts": {
"clean": "rimraf build",
"build": "rollup -c",
"cb": "npm run clean && npm run build",
"prepublishOnly": "npm run cb"
},
"repository": {
"type": "git",
"url": "https://github.com/delpikye-v/react-runtime-hooks.git"
},
"homepage": "https://github.com/delpikye-v/react-runtime-hooks",
"bugs": {
"url": "https://github.com/delpikye-v/react-runtime-hooks/issues"
},
"keywords": [
"react",
"react-hooks",
"react-18",
"effects",
"lifecycle",
"runtime",
"scheduler",
"orchestration",
"intent-first",
"logic-first",
"headless",
"side-effect",
"deterministic"
],
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/react": "^18.2.43",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}