systemquery/package.json
Starbeamrainbowlabs 32d69501b0
Add nightink; esbuild: mark html as text
This way we can do an es6 import to get a html file as a string, which 
we can then pass to nightink for templating - all on the client-side!

Note to self: Instead of using .innerHTML directly, we might want to try 
doing document.createElement(), then .innerHTML, and then .appendChild 
where we actually want it to go
2022-02-26 00:23:33 +00:00

40 lines
984 B
JSON

{
"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",
"apexcharts": "^3.33.1",
"applause-cli": "^1.8.0",
"jpake": "^1.0.1",
"mime": "^3.0.0",
"nightink": "^0.1.3",
"p-queue": "^7.2.0",
"p-reflect": "^3.0.0",
"p-retry": "^5.0.0",
"powahroot": "^1.2.3",
"pretty-ms": "^7.0.1",
"systeminformation": "^5.11.4",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/mime": "^2.0.3",
"esbuild": "^0.14.23",
"fork-awesome": "^1.2.0"
}
}