Files
welshman/packages/store/package.json
T
2026-04-01 11:33:47 -07:00

37 lines
941 B
JSON

{
"name": "@welshman/store",
"version": "0.8.11",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities based on svelte/store for use with welshman",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/store/src/index.js",
"types": "dist/store/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run compile --force",
"clean": "rimraf ./dist",
"compile": "tsc -b tsconfig.build.json",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"@welshman/lib": "workspace:*",
"@welshman/net": "workspace:*",
"@welshman/util": "workspace:*",
"svelte": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"rimraf": "~6.0.0",
"typescript": "~5.8.0",
"@welshman/lib": "workspace:*",
"@welshman/net": "workspace:*",
"@welshman/util": "workspace:*",
"svelte": "^5.39.12"
}
}