UNPKG

@bernierllc/todo-list

Version:

Pure todo list business logic and management utilities for @bernierllc packages

58 lines 1.38 kB
{ "name": "@bernierllc/todo-list", "version": "0.1.2", "description": "Pure todo list business logic and management utilities for @bernierllc packages", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "keywords": [ "todo", "todo-list", "tasks", "list-management", "business-logic", "bernierllc", "core" ], "author": "Bernier LLC", "license": "Bernier LLC", "dependencies": { "uuid": "^11.1.0", "zod": "^3.22.4" }, "devDependencies": { "@types/jest": "^29.5.5", "@types/node": "^20.6.0", "@types/uuid": "^9.0.4", "@typescript-eslint/eslint-plugin": "^8.46.3", "@typescript-eslint/parser": "^8.46.3", "eslint": "^8.57.1", "jest": "^29.6.4", "rimraf": "^5.0.1", "ts-jest": "^29.1.1", "typescript": "^5.2.2" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/bernier-llc/tools.git" }, "publishConfig": { "access": "restricted" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:run": "jest --passWithNoTests", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'", "clean": "rimraf dist", "prebuild": "npm run clean" } }