-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@adesso-se/node-api-prebuilts",
"description": "A CLI and library to manage, locate and load prebuilt node addons targetting Node-API.",
"license": "MIT",
"version": "0.0.0-alpha.3",
"homepage": "https://github.com/adessoSE/node-api-prebuilts#readme",
"repository": "github:adessoSE/node-api-prebuilts",
"author": "Henrik Gaßmann <[email protected]>",
"packageManager": "[email protected]",
"engineStrict": true,
"engines": {
"node": ">= 18.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "./bin/entrypoint.cjs",
"type": "commonjs",
"files": [
"bin/",
"dist/",
"src/"
],
"scripts": {
"prepack": "tsc -p tsconfig.lib.json",
"compile": "tsc -p tsconfig.lib.json",
"lint": "eslint src",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/eslint": "^8.56.10",
"@types/node": "~18.0.6",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "~5.0.4"
},
"dependencies": {
"detect-libc": "^2.0.3"
}
}