-
Notifications
You must be signed in to change notification settings - Fork 483
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "@rescript/runtime",
"version": "13.0.0-alpha.4",
"description": "ReScript runtime modules",
"type": "module",
"license": "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
},
"files": [
"lib"
],
"exports": {
"./lib/es6/*": "./lib/es6/*",
"./lib/js/*": "./lib/js/*",
"./package.json": "./package.json"
},
"scripts": {
"clean": "rescript clean",
"build": "rescript build && touch .buildstamp",
"cppo": "node scripts/cppo.js"
},
"devDependencies": {
"rescript": "workspace:^"
},
"preferUnplugged": true
}