generated from reconbot/typescript-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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": "@serialport/bindings-interface",
"version": "0.0.0-development",
"description": "SerialPort Bindings Typescript Types",
"types": "dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index-esm.mjs"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"repository": "git@github.com:serialport/bindings-interface.git",
"homepage": "https://github.com/serialport/bindings-interface",
"scripts": {
"lint": "tsc && eslint lib/**/*.ts",
"format": "eslint lib/**/*.ts --fix",
"clean": "rm -rf dist-ts dist",
"build": "npm run clean && tsc -p tsconfig-build.json && rollup -c && node -r esbuild-register bundle-types",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"serialport",
"serialport-binding"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.36.4",
"@rollup/plugin-node-resolve": "15.2.1",
"@tsconfig/node18": "18.2.1",
"@types/node": "22.10.7",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"esbuild": "0.24.2",
"esbuild-register": "3.6.0",
"eslint": "8.57.1",
"rollup": "3.28.1",
"semantic-release": "21.1.0",
"typescript": "5.1.6"
}
}