@rescript/webapi 0.1.0-experimental-ff41cfe → 0.1.0-experimental-cf669bb

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +24 -22
package/package.json CHANGED
@@ -1,54 +1,56 @@
1
1
  {
2
2
  "name": "@rescript/webapi",
3
- "version": "0.1.0-experimental-ff41cfe",
3
+ "version": "0.1.0-experimental-cf669bb",
4
4
  "description": "Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)",
5
+ "keywords": [
6
+ "dom",
7
+ "fetch",
8
+ "mdn",
9
+ "rescript",
10
+ "webapi"
11
+ ],
5
12
  "homepage": "https://rescript-lang.github.io/experimental-rescript-webapi/",
6
13
  "bugs": "https://github.com/rescript-lang/experimental-rescript-webapi/issues",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/rescript-lang/experimental-rescript-webapi.git"
10
- },
14
+ "license": "MIT",
11
15
  "author": {
12
16
  "name": "Florian Verdonck"
13
17
  },
14
18
  "maintainers": [
15
19
  "Florian Verdonck (https://github.com/nojaf)"
16
20
  ],
17
- "keywords": [
18
- "rescript",
19
- "webapi",
20
- "mdn",
21
- "dom",
22
- "fetch"
23
- ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/rescript-lang/experimental-rescript-webapi.git"
24
+ },
24
25
  "files": [
25
26
  "rescript.json",
26
27
  "src/**/*.res"
27
28
  ],
28
29
  "type": "module",
30
+ "publishConfig": {
31
+ "access": "public",
32
+ "provenance": true
33
+ },
29
34
  "scripts": {
30
35
  "test": "node tests/index.js",
31
36
  "build": "rescript",
32
- "format": "rescript format && prettier --write ./tests/index.js ./package.json ./docs/pages",
37
+ "format": "rescript format && oxfmt ./tests/index.js ./package.json ./docs && prettier --write ./docs/pages",
38
+ "format:check": "rescript format --check && oxfmt ./tests/index.js ./package.json ./docs --check && prettier --check ./docs/pages",
33
39
  "docs": "astro dev",
34
40
  "prebuild:docs": "node docs/llm.js",
35
41
  "build:docs": "astro build"
36
42
  },
37
- "license": "MIT",
38
- "publishConfig": {
39
- "access": "public",
40
- "provenance": true
41
- },
42
- "peerDependencies": {
43
- "rescript": ">=12.0.0 <13"
44
- },
45
43
  "devDependencies": {
46
44
  "@astrojs/starlight": "0.37.4",
47
45
  "astro": "^5.10.1",
48
46
  "micromark": "^4.0.1",
47
+ "oxfmt": "^0.26.0",
49
48
  "prettier": "^3.3.3",
50
49
  "prettier-plugin-astro": "^0.14.1",
51
- "sharp": "^0.34.0",
50
+ "rescript": ">=12.0.0 <13",
51
+ "sharp": "^0.34.0"
52
+ },
53
+ "peerDependencies": {
52
54
  "rescript": ">=12.0.0 <13"
53
55
  }
54
56
  }