Files
welshman/packages/store/package.json
T
2025-04-02 11:42:10 -07:00

33 lines
778 B
JSON

{
"name": "@welshman/store",
"version": "0.1.2",
"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",
"types": "dist/store/src/index",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rimraf ./dist",
"compile": "tsc -b tsconfig.build.json",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@welshman/lib": "workspace:*",
"@welshman/util": "workspace:*",
"@welshman/relay": "workspace:*",
"svelte": "^4.2.18"
},
"devDependencies": {
"rimraf": "~6.0.0",
"typescript": "~5.8.0"
}
}