selfware 0.2.2

Your personal AI workshop — software you own, software that lasts
Documentation
{
  "name": "{{project_name}}",
  "version": "0.1.0",
  "description": "{{project_description}}",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "dev": "tsx src/index.ts",
    "start": "node dist/index.js",
    "lint": "eslint src/ tests/",
    "lint:fix": "eslint src/ tests/ --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:e2e": "playwright test",
    "test:bench": "vitest bench",
    "clean": "rm -rf dist/ coverage/",
    "prepublishOnly": "npm run build"
  },
  "keywords": ["{{keywords}}"],
  "author": "Selfware Agent <agent@selfware.local>",
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {},
  "devDependencies": {
    "@eslint/js": "^9.0.0",
    "@faker-js/faker": "^8.4.0",
    "@playwright/test": "^1.45.0",
    "@types/node": "^20.0.0",
    "@vitest/coverage-v8": "^2.0.0",
    "eslint": "^9.0.0",
    "eslint-plugin-security": "^3.0.0",
    "globals": "^15.0.0",
    "fast-check": "^3.19.0",
    "msw": "^2.3.0",
    "prettier": "^3.3.0",
    "tsx": "^4.0.0",
    "typescript": "^5.5.0",
    "typescript-eslint": "^8.0.0",
    "vitest": "^2.0.0"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "{{repository_url}}"
  },
  "bugs": {
    "url": "{{repository_url}}/issues"
  },
  "homepage": "{{project_url}}"
}