-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "rescript-signals-react",
"version": "1.0.0",
"description": "React adapter for rescript-signals using useSyncExternalStore.",
"type": "module",
"main": "./src/SignalsReact.res.mjs",
"module": "./src/SignalsReact.res.mjs",
"files": [
"src/**/*.res",
"src/**/*.res.mjs",
"src/**/*.res.d.ts",
"src/**/*.resi",
"lib/bs/src",
"lib/bs/build.ninja",
"lib/bs/compiler-info.json",
"rescript.json",
"LICENSE"
],
"scripts": {
"test": "rescript && node tests/SignalsReact_test.res.mjs",
"build": "rescript",
"clean": "rescript clean",
"prepack": "node scripts/prepack.cjs",
"postpack": "node scripts/postpack.cjs",
"release": "semantic-release -e semantic-release-monorepo"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"@rescript/react": ">=0.13.0",
"rescript-signals": ">=2.0.0"
},
"devDependencies": {
"@rescript/react": "^0.13.1",
"jsdom": "^26.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"keywords": ["rescript", "signals", "react", "hooks"],
"author": "Bernardo Gurgel <brnrdog@hey.com>",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/brnrdog/rescript-signals.git",
"directory": "packages/rescript-signals-react"
}
}