|
| 1 | +{ |
| 2 | + "name": "@ocap/kernel-tui", |
| 3 | + "version": "0.0.0", |
| 4 | + "private": true, |
| 5 | + "description": "Interactive terminal UI for the OCAP kernel", |
| 6 | + "homepage": "https://github.com/MetaMask/ocap-kernel/tree/main/packages/kernel-tui#readme", |
| 7 | + "bugs": { |
| 8 | + "url": "https://github.com/MetaMask/ocap-kernel/issues" |
| 9 | + }, |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "https://github.com/MetaMask/ocap-kernel.git" |
| 13 | + }, |
| 14 | + "type": "module", |
| 15 | + "bin": { |
| 16 | + "ocap-tui": "./dist/app.mjs" |
| 17 | + }, |
| 18 | + "exports": { |
| 19 | + "./package.json": "./package.json" |
| 20 | + }, |
| 21 | + "files": [ |
| 22 | + "dist/" |
| 23 | + ], |
| 24 | + "scripts": { |
| 25 | + "build": "ts-bridge --project tsconfig.build.json --no-references --clean && chmod +x dist/app.mjs", |
| 26 | + "build:docs": "typedoc", |
| 27 | + "changelog:validate": "../../scripts/validate-changelog.sh @ocap/kernel-tui", |
| 28 | + "clean": "rimraf --glob './*.tsbuildinfo' ./.eslintcache ./coverage ./dist ./.turbo ./logs", |
| 29 | + "lint": "yarn lint:eslint && yarn lint:misc --check && yarn constraints && yarn lint:dependencies", |
| 30 | + "lint:dependencies": "depcheck --quiet", |
| 31 | + "lint:eslint": "eslint . --cache", |
| 32 | + "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn constraints --fix && yarn lint:dependencies", |
| 33 | + "lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '!**/CHANGELOG.old.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path ../../.gitignore --log-level error", |
| 34 | + "publish:preview": "yarn npm publish --tag preview", |
| 35 | + "test": "vitest run --config vitest.config.ts", |
| 36 | + "test:clean": "yarn test --no-cache --coverage.clean", |
| 37 | + "test:dev": "yarn test --mode development", |
| 38 | + "test:verbose": "yarn test --reporter verbose", |
| 39 | + "test:watch": "vitest --config vitest.config.ts", |
| 40 | + "test:dev:quiet": "yarn test:dev --reporter @ocap/repo-tools/vitest-reporters/silent" |
| 41 | + }, |
| 42 | + "devDependencies": { |
| 43 | + "@arethetypeswrong/cli": "^0.17.4", |
| 44 | + "@metamask/auto-changelog": "^5.3.0", |
| 45 | + "@metamask/eslint-config": "^15.0.0", |
| 46 | + "@metamask/eslint-config-nodejs": "^15.0.0", |
| 47 | + "@metamask/eslint-config-typescript": "^15.0.0", |
| 48 | + "@ocap/repo-tools": "workspace:^", |
| 49 | + "@ts-bridge/cli": "^0.6.3", |
| 50 | + "@ts-bridge/shims": "^0.1.1", |
| 51 | + "@types/node": "^22.13.1", |
| 52 | + "@types/react": "^18.3.18", |
| 53 | + "@types/yargs": "^17.0.33", |
| 54 | + "@typescript-eslint/eslint-plugin": "^8.29.0", |
| 55 | + "@typescript-eslint/parser": "^8.29.0", |
| 56 | + "@typescript-eslint/utils": "^8.29.0", |
| 57 | + "@vitest/eslint-plugin": "^1.6.14", |
| 58 | + "depcheck": "^1.4.7", |
| 59 | + "eslint": "^9.23.0", |
| 60 | + "eslint-config-prettier": "^10.1.1", |
| 61 | + "eslint-import-resolver-typescript": "^4.3.1", |
| 62 | + "eslint-plugin-import-x": "^4.10.0", |
| 63 | + "eslint-plugin-jsdoc": "^50.6.9", |
| 64 | + "eslint-plugin-n": "^17.17.0", |
| 65 | + "eslint-plugin-prettier": "^5.2.6", |
| 66 | + "eslint-plugin-promise": "^7.2.1", |
| 67 | + "prettier": "^3.5.3", |
| 68 | + "rimraf": "^6.0.1", |
| 69 | + "turbo": "^2.9.1", |
| 70 | + "typedoc": "^0.28.1", |
| 71 | + "typescript": "~5.8.2", |
| 72 | + "typescript-eslint": "^8.29.0", |
| 73 | + "vite": "^8.0.6", |
| 74 | + "vitest": "^4.1.3" |
| 75 | + }, |
| 76 | + "engines": { |
| 77 | + "node": ">=22" |
| 78 | + }, |
| 79 | + "dependencies": { |
| 80 | + "@metamask/kernel-node-runtime": "workspace:^", |
| 81 | + "@metamask/kernel-shims": "workspace:^", |
| 82 | + "@metamask/kernel-utils": "workspace:^", |
| 83 | + "@metamask/streams": "workspace:^", |
| 84 | + "glob": "^11.0.0", |
| 85 | + "ink": "^5.2.1", |
| 86 | + "ink-select-input": "^6.0.0", |
| 87 | + "ink-spinner": "^5.0.0", |
| 88 | + "ink-text-input": "^6.0.0", |
| 89 | + "react": "^18.3.1", |
| 90 | + "yargs": "^17.7.2" |
| 91 | + } |
| 92 | +} |
0 commit comments