-
Notifications
You must be signed in to change notification settings - Fork 481
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.34 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "rescript",
"version": "13.0.0-alpha.3",
"description": "ReScript toolchain",
"type": "module",
"keywords": [
"ReScript",
"Compiler",
"Types",
"JavaScript",
"Language"
],
"license": "(LGPL-3.0-or-later AND MIT)",
"homepage": "https://rescript-lang.org",
"bugs": "https://github.com/rescript-lang/rescript/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/rescript.git"
},
"author": {
"name": "Hongbo Zhang",
"email": "bobzhang1988@gmail.com"
},
"maintainers": [
"Christoph Knittel (https://github.com/cknitt)",
"Cristiano Calcagno (https://github.com/cristianoc)",
"Dmitry Zakharov (https://github.com/DZakh)",
"Florian Hammerschmidt (https://github.com/fhammerschmidt)",
"Florian Verdonck (https://github.com/nojaf)",
"Gabriel Nordeborn (https://github.com/zth)",
"Hyeseong Kim (https://github.com/cometkim)",
"Jaap Frolich (https://github.com/jfrolich)",
"Matthias Le Brun (https://github.com/bloodyowl)",
"Patrick Ecker (https://github.com/ryyppy)",
"Paul Tsnobiladzé (https://github.com/tsnobip)",
"Shulhi Sapli (https://github.com/shulhi)",
"Woonki Moon (https://github.com/mununki)"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20.11.0"
},
"bin": {
"bsc": "cli/bsc.js",
"rescript": "cli/rescript.js",
"rescript-tools": "cli/rescript-tools.js"
},
"scripts": {
"test": "node scripts/test.js -all",
"test-build": "node scripts/test.js -build",
"test-ocaml": "node scripts/test.js -ounit",
"check": "biome check --no-errors-on-unmatched .",
"check:all": "biome check .",
"format": "biome check --no-errors-on-unmatched . --fix",
"coverage": "nyc --timeout=3000 --reporter=html mocha tests/tests/src/*_test.js && open ./coverage/index.html",
"typecheck": "tsc",
"apidocs:generate": "yarn workspace @utils/scripts apidocs:generate"
},
"files": [
"CHANGELOG.md",
"COPYING",
"COPYING.LESSER",
"CREDITS.md",
"docs/docson/build-schema.json",
"cli"
],
"exports": {
"./lib/es6/*": "./lib/es6/*",
"./lib/js/*": "./lib/js/*",
"./package.json": "./package.json"
},
"imports": {
"#cli/*": "./cli/common/*.js",
"#dev/*": "./lib_dev/*.js"
},
"dependencies": {
"@rescript/runtime": "workspace:packages/@rescript/runtime"
},
"optionalDependencies": {
"@rescript/darwin-arm64": "workspace:packages/@rescript/darwin-arm64",
"@rescript/darwin-x64": "workspace:packages/@rescript/darwin-x64",
"@rescript/linux-arm64": "workspace:packages/@rescript/linux-arm64",
"@rescript/linux-x64": "workspace:packages/@rescript/linux-x64",
"@rescript/win32-x64": "workspace:packages/@rescript/win32-x64"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/node": "^25.0.3",
"@types/semver": "^7.7.0",
"@yarnpkg/types": "^4.0.1",
"mocha": "11.7.5",
"nyc": "17.1.0",
"semver": "^7.7.2",
"typescript": "5.9.3"
},
"workspaces": [
"packages/playground",
"packages/@rescript/*",
"tests/dependencies/**",
"tests/analysis_tests/**",
"tests/docstring_tests",
"tests/gentype_tests/**",
"tests/tools_tests",
"tests/commonjs_tests",
"scripts/res"
],
"packageManager": "yarn@4.12.0",
"preferUnplugged": true
}