-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.23 KB
/
package.json
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
{
"name": "@rescript/webapi",
"version": "0.1.0",
"description": "Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)",
"homepage": "https://rescript-lang.github.io/experimental-rescript-webapi/",
"bugs": "https://github.com/rescript-lang/experimental-rescript-webapi/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/experimental-rescript-webapi.git"
},
"author": {
"name": "Florian Verdonck"
},
"maintainers": [
"Florian Verdonck (https://github.com/nojaf)"
],
"keywords": [
"rescript",
"webapi",
"mdn",
"dom",
"fetch"
],
"files": [
"rescript.json",
"src/**/*.res"
],
"type": "module",
"scripts": {
"test": "node tests/index.js",
"build": "rescript",
"format": "rescript format -all && prettier --write ./tests/index.js ./package.json ./docs/pages",
"docs": "astro dev",
"build:docs": "astro build"
},
"license": "MIT",
"dependencies": {
"rescript": "^12.0.0-alpha.6"
},
"devDependencies": {
"@astrojs/starlight": "0.30.3",
"astro": "^5.1.1",
"micromark": "^4.0.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.33.5"
}
}