-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "@documenso/pdf-sign",
"version": "0.1.0",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "pdf-sign",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl"
]
}
},
"license": "AGPL-3.0",
"devDependencies": {
"@napi-rs/cli": "^2.18.0",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --pipe \"prettier -w\"",
"build:debug": "napi build --platform --pipe \"prettier -w\"",
"format": "run-p format:eslint format:prettier format:rs",
"format:prettier": "prettier . -w",
"format:eslint": "eslint --fix .",
"format:rs": "cargo fmt",
"prepublishOnly": "napi prepublish -t npm",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "[email protected]"
}