-
Bartek Wrona authoredBartek Wrona authored
This project manages its dependencies using npm.
Learn more
package.json 2.97 KiB
{
"name": "@hiveio/workerbee",
"version": "0.0.1-LastGitTagPlaceholder.GitHashPlaceholder",
"description": "Hive automation library based on the wax and beekeeper",
"main": "dist/bundle/index.js",
"types": "dist/bundle/index.d.ts",
"packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b",
"exports": {
".": {
"default": {
"import": {
"types": "./dist/bundle/index.d.ts",
"default": "./dist/bundle/index.js"
}
}
},
"./package.json": "./package.json"
},
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"private": false,
"scripts": {
"lint": "npm run lint-ci -- --fix",
"lint-ci": "eslint --max-warnings=0",
"prebuild": "ls-engines && husky",
"build": "tsc",
"postbuild": "rollup -c && tsx ./npm-common-config/ts-common/terser.ts && size-limit",
"pretest": "playwright install chromium",
"test": "unset CI && playwright test --workers 1 --max-failures 1 --project=workerbee_testsuite"
},
"size-limit": [
{
"path": [
"./dist/bundle"
],
"limit": "100 kB",
"brotli": false
}
],
"files": [
"LICENSE.md",
"README.md",
"package.json",
"dist/bundle/index.d.ts",
"dist/bundle/index.js"
],
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@playwright/test": "catalog:playwright-toolset",
"@rollup/plugin-commonjs": "catalog:rollup-toolset",
"@rollup/plugin-node-resolve": "catalog:rollup-toolset",
"@size-limit/file": "catalog:size-limit-toolset",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"buffer": "^6.0.3",
"eslint": "^9.20.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.12.0",
"http-server": "catalog:playwright-toolset",
"husky": "catalog:husky",
"lint-staged": "^15.2.2",
"ls-engines": "^0.9.3",
"playwright": "catalog:playwright-toolset",
"process": "^0.11.10",
"rollup": "catalog:rollup-toolset",
"rollup-plugin-dts": "catalog:rollup-toolset",
"size-limit": "catalog:size-limit-toolset",
"terser": "catalog:terser",
"tslib": "catalog:typescript-toolset",
"tsx": "catalog:typescript-toolset",
"typedoc": "catalog:typedoc-toolset",
"typedoc-gitlab-wiki-theme": "catalog:typedoc-toolset",
"typedoc-plugin-markdown": "catalog:typedoc-toolset",
"typescript": "catalog:typescript-toolset"
},
"dependencies": {
"@hiveio/beekeeper": "1.27.8-stable.250131103618",
"@hiveio/wax": "1.27.6-rc7-stable.250131113706"
},
"repository": {
"type": "git",
"url": "https://gitlab.syncad.com/hive/workerbee.git"
},
"engines": {
"node": "^20.11 || >= 21.2"
},
"publishConfig": {
"registry": "https://RegistryPlaceholder",
"tag": "DistTagPlaceholder"
}
}