-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.5 KB
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
55
56
57
58
59
60
61
62
63
64
{
"name": "@paqjs/core",
"version": "1.4.1",
"description": "Hash file or directory recursively.",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"binaryName": "paqjs",
"packageName": "@paqjs/core",
"targets": [
"x86_64-unknown-linux-gnu",
"i686-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"i686-pc-windows-msvc",
"aarch64-apple-darwin",
"x86_64-apple-darwin"
]
},
"files": [
"index.js",
"index.d.ts",
"package.json",
"README.md",
"LICENSE",
"src"
],
"scripts": {
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"artifacts": "napi artifacts",
"prepublishOnly": "napi prepublish -t npm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregl83/paqjs.git"
},
"keywords": [
"hash",
"blake3",
"directory-traversal",
"cryptographic",
"rust"
],
"devDependencies": {
"@napi-rs/cli": "^3.4.1"
},
"engines": {
"node": ">= 20"
},
"author": "Gregory Langlais (https://gregorylanglais.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregl83/paqjs/issues"
},
"homepage": "https://github.com/gregl83/paqjs#readme",
"optionalDependencies": {
"@paqjs/core-linux-x64-gnu": "1.4.1",
"@paqjs/core-linux-ia32-gnu": "1.4.1",
"@paqjs/core-win32-x64-msvc": "1.4.1",
"@paqjs/core-win32-ia32-msvc": "1.4.1",
"@paqjs/core-darwin-x64": "1.4.1",
"@paqjs/core-darwin-arm64": "1.4.1"
}
}