-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.75 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
{
"name": "@juspay/rescript-bindgen",
"version": "1.2.1",
"description": "Deterministic TypeScript -> ReScript binding generator. Reads .d.ts via the TypeScript compiler API and emits type-safe @react.component bindings — no AI, no %identity.",
"type": "module",
"main": "src/index.mjs",
"types": "types.d.ts",
"exports": {
".": {
"types": "./types.d.ts",
"import": "./src/index.mjs"
}
},
"bin": {
"rescript-bindgen": "src/cli.mjs"
},
"scripts": {
"gen": "node src/cli.mjs",
"test": "node test/smoke.mjs && node test/golden.mjs && node test/html-attrs.mjs",
"test:smoke": "node test/smoke.mjs",
"test:golden": "node test/golden.mjs",
"test:golden:update": "node test/golden.mjs --update",
"test:compile": "node test/golden-compile.mjs",
"bench": "node benchmark/run.mjs",
"bench:update": "node benchmark/run.mjs --update",
"gen:attrs": "node scripts/gen-html-attrs.mjs"
},
"files": [
"src/",
"types.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"rescript",
"typescript",
"bindings",
"codegen",
"react",
"d.ts",
"interop",
"blend-design-system",
"juspay",
"binding-generator",
"typescript-to-rescript",
"dts",
"rescript-bindings",
"type-generator"
],
"author": "Juspay Technologies",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/juspay/rescript-bindgen.git"
},
"bugs": {
"url": "https://github.com/juspay/rescript-bindgen/issues"
},
"homepage": "https://github.com/juspay/rescript-bindgen#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"typescript": "^5.6.0"
},
"devDependencies": {
"@types/react": "19.2.17"
}
}