attq/package.json

35 lines
870 B
JSON
Raw Normal View History

2026-02-02 07:34:15 +00:00
{
"name": "attq",
"version": "0.1.0-beta.0",
"description": "Async Tiny Task Queue",
"repository": {
"type": "git",
"url": "https://forge.secondsystemtech.com/brent/attq"
},
"license": "MIT",
"author": "Brent Schroeter (https://brentsch.com)",
"browser": "dist/index.min.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "mise run build",
"test": "mise run test"
},
"devDependencies": {
2026-02-02 18:09:54 +00:00
"@eslint/js": "^9.39.2",
2026-02-02 07:34:15 +00:00
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
2026-02-02 07:57:37 +00:00
"@types/jest": "^30.0.0",
2026-02-02 18:09:54 +00:00
"eslint": "^9.39.2",
"globals": "^17.3.0",
2026-02-02 07:57:37 +00:00
"jest": "^30.2.0",
2026-02-02 18:09:54 +00:00
"jiti": "^2.6.1",
2026-02-02 07:34:15 +00:00
"rollup": "^4.57.1",
2026-02-02 07:57:37 +00:00
"ts-jest": "^29.4.6",
2026-02-02 07:34:15 +00:00
"tslib": "^2.8.1",
2026-02-02 18:09:54 +00:00
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
2026-02-02 07:34:15 +00:00
}
}