1
0
silverbullet/plugbox/package.json

37 lines
840 B
JSON
Raw Normal View History

2022-03-04 09:26:41 +00:00
{
"name": "plugbox",
"version": "1.0.0",
"type": "module",
2022-03-04 11:09:25 +00:00
"license": "MIT",
"bin": {
"plugbox-bundle": "./bin/plugbox-bundle.mjs"
},
2022-03-04 09:26:41 +00:00
"scripts": {
2022-03-14 09:07:38 +00:00
"check": "tsc --noEmit",
"test": "jest",
"build-worker": "tsc src/node_worker.ts --outDir dist --module nodenext"
2022-03-04 09:26:41 +00:00
},
"dependencies": {
"esbuild": "^0.14.24",
2022-03-04 10:21:11 +00:00
"idb": "^7.0.0",
2022-03-14 09:07:38 +00:00
"typescript": "^4.7.0-dev.20220313",
2022-03-04 09:26:41 +00:00
"vm2": "^3.9.9",
"yargs": "^17.3.1"
},
"devDependencies": {
2022-03-14 09:07:38 +00:00
"@jest/globals": "^27.5.1",
"@types/jest": "^27.4.1",
2022-03-04 09:26:41 +00:00
"@types/node": "^17.0.21",
2022-03-14 09:07:38 +00:00
"@types/yargs": "^17.0.9",
"buffer": "^6.0.3",
"events": "^3.3.0",
"jest": "^27.5.1",
"parcel": "^2.3.2",
"parceljs": "^0.0.1",
"path-browserify": "^1.0.1",
"ts-jest": "^27.1.3",
"util": "^0.12.4",
"vm-browserify": "^1.1.2"
2022-03-04 09:26:41 +00:00
}
}