-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 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
{
"name": "@rescript/webapi",
"version": "0.1.0",
"description": "Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)",
"keywords": [
"dom",
"fetch",
"mdn",
"rescript",
"webapi"
],
"homepage": "https://rescript-lang.github.io/experimental-rescript-webapi/",
"bugs": "https://github.com/rescript-lang/experimental-rescript-webapi/issues",
"license": "MIT",
"author": {
"name": "Florian Verdonck"
},
"maintainers": [
"Florian Verdonck (https://github.com/nojaf)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/experimental-rescript-webapi.git"
},
"files": [
"rescript.json",
"src/**/*.res"
],
"type": "module",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "node tests/index.js",
"build": "rescript",
"format": "rescript format && oxfmt ./tests/index.js ./package.json ./docs && prettier --write ./docs/pages",
"format:check": "rescript format --check && oxfmt ./tests/index.js ./package.json ./docs --check && prettier --check ./docs/pages",
"docs": "astro dev",
"prebuild:docs": "node docs/llm.js",
"build:docs": "astro build"
},
"devDependencies": {
"@astrojs/starlight": "0.37.6",
"astro": "^5.10.1",
"micromark": "^4.0.1",
"oxfmt": "^0.35.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"rescript": ">=12.0.0 <13",
"sharp": "^0.34.0"
},
"peerDependencies": {
"rescript": ">=12.0.0 <13"
}
}