-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 877 Bytes
/
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
{
"name": "s-tier",
"version": "1.0.1",
"description": "S-tier S-Expression serialization & deserialization for JavaScript powered by OCaml 🐫✨",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/*"
],
"scripts": {
"build-ocaml": "eval $(opam env) && dune build",
"build-typescript": "tsup",
"build": "npm run build-ocaml && npm run build-typescript",
"publish-patch": "npm run build && npm version patch && npm publish",
"test": "bun test ./_build/default/dist/src/s-tier.test.ts",
"lint": "tsc"
},
"devDependencies": {
"bun-types": "1.0.20",
"fast-check": "^3.15.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"melange-ffi": "latest"
}
}