package.json: add build script command

This commit is contained in:
Starbeamrainbowlabs 2022-02-23 00:10:17 +00:00
parent da819a59af
commit af7e5c878d
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -1,35 +1,36 @@
{ {
"name": "systemquery", "name": "systemquery",
"version": "1.0.0", "version": "1.0.0",
"description": "Distributed system information query tool", "description": "Distributed system information query tool",
"main": "src/index.mjs", "main": "src/index.mjs",
"scripts": { "scripts": {
"test": "echo \"No tests have been implemented yet\"" "test": "echo \"No tests have been implemented yet\"",
}, "build": "node src/static/esbuild.mjs"
"repository": { },
"type": "git", "repository": {
"url": "git+https://github.com/sbrl/systemquery.git" "type": "git",
}, "url": "git+https://github.com/sbrl/systemquery.git"
"author": "Starbeamrainbowlabs", },
"license": "MPL-2.0", "author": "Starbeamrainbowlabs",
"bugs": { "license": "MPL-2.0",
"url": "https://github.com/sbrl/systemquery/issues" "bugs": {
}, "url": "https://github.com/sbrl/systemquery/issues"
"homepage": "https://github.com/sbrl/systemquery#readme", },
"dependencies": { "homepage": "https://github.com/sbrl/systemquery#readme",
"@ltd/j-toml": "^1.29.0", "dependencies": {
"applause-cli": "^1.8.0", "@ltd/j-toml": "^1.29.0",
"fork-awesome": "^1.2.0", "applause-cli": "^1.8.0",
"jpake": "^1.0.1", "fork-awesome": "^1.2.0",
"nexline": "^1.2.2", "jpake": "^1.0.1",
"p-queue": "^7.2.0", "nexline": "^1.2.2",
"p-reflect": "^3.0.0", "p-queue": "^7.2.0",
"p-retry": "^5.0.0", "p-reflect": "^3.0.0",
"powahroot": "^1.1.1", "p-retry": "^5.0.0",
"systeminformation": "^5.11.2", "powahroot": "^1.1.1",
"tweetnacl": "^1.0.3" "systeminformation": "^5.11.2",
}, "tweetnacl": "^1.0.3"
"devDependencies": { },
"esbuild": "^0.14.23" "devDependencies": {
} "esbuild": "^0.14.23"
}
} }