Rocky_Mountain_Vending/.pnpm-store/v10/files/8f/0941cbdeeee62fa096b27b3fb2ccaa558a1e2b20f456461235c18c0ffafe3892d7400bafee240b16b8d2c78fca3a72ceba79b110fc108d9ad4de4ea4feed55
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

57 lines
No EOL
1.5 KiB
Text

{
"name": "ohash",
"version": "2.0.11",
"description": "Simple object hashing, serialization and comparison utils.",
"repository": "unjs/ohash",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./utils": {
"types": "./dist/utils/index.d.mts",
"default": "./dist/utils/index.mjs"
},
"./crypto": {
"node": {
"types": "./dist/crypto/node/index.d.mts",
"default": "./dist/crypto/node/index.mjs"
},
"default": {
"types": "./dist/crypto/js/index.d.mts",
"default": "./dist/crypto/js/index.mjs"
}
}
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"automd": "^0.4.0",
"changelogen": "^0.6.0",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"eslint-config-unjs": "^0.4.2",
"mitata": "^1.0.34",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"unbuild": "^3.5.0",
"vitest": "^3.0.7"
},
"scripts": {
"bench": "vitest bench",
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . && prettier -c src test",
"lint:fix": "automd && eslint --fix . && prettier -w src test",
"release": "pnpm test && changelogen --release --push && pnpm publish",
"test": "pnpm lint && vitest run --coverage && pnpm test:types",
"test:types": "tsc --noEmit"
}
}