Files
welshman/packages/store/package.json
T
2025-11-04 17:00:37 -08:00

33 lines
792 B
JSON

{
"name": "@welshman/store",
"version": "0.6.4",
"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"
},
"dependencies": {
"@welshman/lib": "workspace:*",
"@welshman/util": "workspace:*",
"@welshman/net": "workspace:*",
"svelte": "^4.2.18"
},
"devDependencies": {
"rimraf": "~6.0.0",
"typescript": "~5.8.0"
}
}