UNPKG

@nebulaglitch/shopbot

Version:
72 lines 2.03 kB
{ "name": "@nebulaglitch/shopbot", "version": "0.0.2", "description": "A library to generate shopbot output", "main": "./dist/index.cjs", "module": "./dist/index.js", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/CrimsonBastille/shopbot.git" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist" ], "keywords": [ "shopbot", "manufacturing", "factory" ], "author": "Crimson Bastille <CrimsonBastille@proton.me>", "license": "Apache-2.0", "dependencies": { "numeral": "^2.0.6" }, "devDependencies": { "@babel/core": "^7.27.3", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-typescript": "^7.27.1", "@babel/preset-typescript": "^7.27.1", "@doccident/doccident": "^0.0.1", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.27.0", "@rollup/plugin-replace": "^6.0.2", "@swc/core": "^1.11.29", "@types/js-yaml": "^4.0.9", "@types/luxon": "^3.6.2", "@types/node": "^22.15.27", "@types/numeral": "^2.0.5", "@typescript-eslint/eslint-plugin": "^8.33.0", "@typescript-eslint/parser": "^8.33.0", "@vitest/coverage-v8": "^3.1.4", "eslint": "^9.27.0", "eslint-plugin-import": "^2.31.0", "globals": "^16.2.0", "mockdate": "^3.0.5", "typescript": "^5.8.3", "vite": "^6.3.5", "vite-plugin-dts": "^4.5.4", "vite-plugin-node": "^5.0.1", "vitest": "^3.1.4" }, "scripts": { "build": "tsc --noEmit && vite build", "start": "dist/main.js", "dev": "vite", "watch": "vite build --watch", "test": "pnpm run test:coverage && pnpm run test:readme", "test:coverage": "vitest run --coverage", "test:watch": "vitest", "test:readme": "doccident -c .doccident-setup.mjs README.md", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "clean": "rm -rf dist" } }