-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 987 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
{
"name": "@nobleai/rescript-documentation",
"version": "0.7.2",
"description": "NobleAI tool for generating rescript library documentation",
"repository": "https://github.com/noble-ai/rescript-prelude",
"author": "Alex Mouton ([email protected])",
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"rescript-doc": "./bin/rescript-doc.cjs"
},
"scripts": {
"build": "rescript build -with-deps; esbuild --bundle src/Doc.bs.js --outfile=./bin/rescript-doc.cjs --platform=node --log-level=debug --banner:js=\"#!/usr/bin/env node\"",
"start": "rescript build -w",
"clean": "rescript clean",
"test": "vitest",
"pub": "yarn publish --scope nobleai --access public"
},
"dependencies": {
"@nobleai/rescript-prelude": "^0.7.0",
"lodash": "4.17.21",
"rescript": "^10.1",
"rescript-nodejs": "^16.0.0"
},
"devDependencies": {
"esbuild": "^0.20.1"
},
"keywords": [
"rescript",
"documentation"
]
}