-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
49
50
51
52
53
54
{
"type": "commonjs",
"name": "@bindrs/rfd",
"version": "2.2.2",
"description": "📂 Lets you open native file picker and message boxes in JavaScript!",
"keywords": [
"bindings",
"napi-rs",
"nodejs",
"nodejs-addon",
"rust"
],
"license": "MIT",
"contributors": [
"Jacob Hummer <[email protected]> (https://jcbhmr.me/)"
],
"homepage": "https://bindrs.github.io/rfd/",
"repository": "github:bindrs/rfd",
"bugs": "https://github.com/bindrs/rfd/issues",
"exports": {
"deno": "./index.js",
"bun": "./index.js",
"node-addons": "./index.js"
},
"files": [
"*.node",
"index.d.ts",
"index.js"
],
"scripts": {
"build": "napi build --platform",
"prebuild:docs": "npm run build",
"build:docs": "typedoc",
"docs:preview": "serve docs/dist",
"lint": "cargo fmt && prettier --ignore-path .gitignore -w .",
"pretest": "npm run build",
"test": "node --test",
"pretest:repl": "npm run build",
"test:repl": "node --import ./index.test.mjs"
},
"devDependencies": {
"@napi-rs/cli": "^2.16.2",
"prettier": "^3.0.0",
"serve": "^14.2.0",
"typedoc": "^0.24.8"
},
"typedocOptions": {
"entryPoints": [
"index.d.ts"
],
"out": "docs/dist",
"skipErrorChecking": true
}
}