package.json: add build script command
This commit is contained in:
parent
da819a59af
commit
af7e5c878d
1 changed files with 34 additions and 33 deletions
67
package.json
67
package.json
|
@ -1,35 +1,36 @@
|
|||
{
|
||||
"name": "systemquery",
|
||||
"version": "1.0.0",
|
||||
"description": "Distributed system information query tool",
|
||||
"main": "src/index.mjs",
|
||||
"scripts": {
|
||||
"test": "echo \"No tests have been implemented yet\""
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sbrl/systemquery.git"
|
||||
},
|
||||
"author": "Starbeamrainbowlabs",
|
||||
"license": "MPL-2.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sbrl/systemquery/issues"
|
||||
},
|
||||
"homepage": "https://github.com/sbrl/systemquery#readme",
|
||||
"dependencies": {
|
||||
"@ltd/j-toml": "^1.29.0",
|
||||
"applause-cli": "^1.8.0",
|
||||
"fork-awesome": "^1.2.0",
|
||||
"jpake": "^1.0.1",
|
||||
"nexline": "^1.2.2",
|
||||
"p-queue": "^7.2.0",
|
||||
"p-reflect": "^3.0.0",
|
||||
"p-retry": "^5.0.0",
|
||||
"powahroot": "^1.1.1",
|
||||
"systeminformation": "^5.11.2",
|
||||
"tweetnacl": "^1.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"esbuild": "^0.14.23"
|
||||
}
|
||||
"name": "systemquery",
|
||||
"version": "1.0.0",
|
||||
"description": "Distributed system information query tool",
|
||||
"main": "src/index.mjs",
|
||||
"scripts": {
|
||||
"test": "echo \"No tests have been implemented yet\"",
|
||||
"build": "node src/static/esbuild.mjs"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sbrl/systemquery.git"
|
||||
},
|
||||
"author": "Starbeamrainbowlabs",
|
||||
"license": "MPL-2.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sbrl/systemquery/issues"
|
||||
},
|
||||
"homepage": "https://github.com/sbrl/systemquery#readme",
|
||||
"dependencies": {
|
||||
"@ltd/j-toml": "^1.29.0",
|
||||
"applause-cli": "^1.8.0",
|
||||
"fork-awesome": "^1.2.0",
|
||||
"jpake": "^1.0.1",
|
||||
"nexline": "^1.2.2",
|
||||
"p-queue": "^7.2.0",
|
||||
"p-reflect": "^3.0.0",
|
||||
"p-retry": "^5.0.0",
|
||||
"powahroot": "^1.1.1",
|
||||
"systeminformation": "^5.11.2",
|
||||
"tweetnacl": "^1.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"esbuild": "^0.14.23"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue