mirror of
https://github.com/jwetzell/aas-js.git
synced 2026-08-06 05:13:38 +00:00
37 lines
680 B
JSON
37 lines
680 B
JSON
{
|
|
"name": "aas-cli",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"bin": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"prebuild": "rimraf dist",
|
|
"build": "pkg ."
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"aas-lib": "^0.1.0",
|
|
"commander": "^11.1.0",
|
|
"serialport": "^12.0.0",
|
|
"ws": "^8.14.2"
|
|
},
|
|
"devDependencies": {
|
|
"pkg": "^5.8.1",
|
|
"rimraf": "^5.0.5"
|
|
},
|
|
"pkg": {
|
|
"assets": [
|
|
"../../**/node_modules/@serialport/**/*.node"
|
|
],
|
|
"targets": [
|
|
"node18-linux-x64",
|
|
"node18-macos-x64",
|
|
"node18-win-x64"
|
|
],
|
|
"outputPath": "dist"
|
|
}
|
|
}
|