98e40dac97
CLI Smoke Test / smoke-test-linux (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-linux (24) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (24) (push) Has been cancelled
Expo App TypeScript typecheck / typecheck (push) Has been cancelled
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "@slopus/happy-wire",
|
|
"version": "0.1.0",
|
|
"description": "Shared message wire types and Zod schemas for Happy clients and services",
|
|
"author": "Kirill Dubovitskiy",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"homepage": "https://github.com/slopus/happy/tree/main/packages/happy-wire",
|
|
"bugs": "https://github.com/slopus/happy/issues",
|
|
"repository": "slopus/happy",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.cts",
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "shx rm -rf dist && tsc --noEmit && pkgroll",
|
|
"test": "$npm_execpath run build && vitest run",
|
|
"prepublishOnly": "$npm_execpath run build && $npm_execpath run test",
|
|
"release": "npx --no-install release-it"
|
|
},
|
|
"dependencies": {
|
|
"@paralleldrive/cuid2": "^2.2.2",
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": ">=20",
|
|
"pkgroll": "^2.14.2",
|
|
"release-it": "^19.0.6",
|
|
"shx": "^0.3.3",
|
|
"typescript": "5.9.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org"
|
|
},
|
|
"packageManager": "pnpm@10.11.0"
|
|
}
|