|
| 1 | +{ |
| 2 | + "name": "skilld-protocol", |
| 3 | + "type": "module", |
| 4 | + "version": "0.2.2", |
| 5 | + "description": "Wire shapes and constants shared between the skilld CLI and skilld.dev", |
| 6 | + "author": { |
| 7 | + "name": "Harlan Wilton", |
| 8 | + "email": "harlan@harlanzw.com", |
| 9 | + "url": "https://harlanzw.com/" |
| 10 | + }, |
| 11 | + "license": "MIT", |
| 12 | + "repository": { |
| 13 | + "type": "git", |
| 14 | + "url": "git+https://github.com/skilld-dev/skilld.git", |
| 15 | + "directory": "packages/protocol" |
| 16 | + }, |
| 17 | + "keywords": ["skilld", "protocol", "zod", "schema"], |
| 18 | + "sideEffects": false, |
| 19 | + "exports": { |
| 20 | + "./wire": { |
| 21 | + "types": "./dist/wire.d.mts", |
| 22 | + "import": "./dist/wire.mjs" |
| 23 | + }, |
| 24 | + "./constants": { |
| 25 | + "types": "./dist/constants.d.mts", |
| 26 | + "import": "./dist/constants.mjs" |
| 27 | + }, |
| 28 | + "./test-fixtures": { |
| 29 | + "types": "./dist/test-fixtures.d.mts", |
| 30 | + "import": "./dist/test-fixtures.mjs" |
| 31 | + } |
| 32 | + }, |
| 33 | + "files": ["dist"], |
| 34 | + "engines": { |
| 35 | + "node": ">=18" |
| 36 | + }, |
| 37 | + "scripts": { |
| 38 | + "build": "obuild", |
| 39 | + "lint": "eslint .", |
| 40 | + "lint:fix": "eslint . --fix", |
| 41 | + "typecheck": "tsc --noEmit", |
| 42 | + "test": "vitest", |
| 43 | + "test:run": "vitest run", |
| 44 | + "publint": "publint", |
| 45 | + "attw": "pnpm pack && attw skilld-protocol-*.tgz --ignore-rules no-resolution cjs-resolves-to-esm && rm skilld-protocol-*.tgz", |
| 46 | + "prepack": "pnpm build" |
| 47 | + }, |
| 48 | + "dependencies": { |
| 49 | + "zod": "catalog:" |
| 50 | + }, |
| 51 | + "devDependencies": { |
| 52 | + "@antfu/eslint-config": "catalog:dev-lint", |
| 53 | + "@arethetypeswrong/cli": "catalog:", |
| 54 | + "@types/node": "catalog:dev-build", |
| 55 | + "eslint": "catalog:dev-lint", |
| 56 | + "obuild": "catalog:dev-build", |
| 57 | + "publint": "catalog:", |
| 58 | + "typescript": "catalog:", |
| 59 | + "vitest": "catalog:dev-test" |
| 60 | + } |
| 61 | +} |
0 commit comments