Rocky_Mountain_Vending/.pnpm-store/v10/files/2f/2138531aab53fa2dcb34ed2a3a65bc2ff2a7e312bbd56fa91dacbce2455f250905fa64bdea9a30efcf6a07cb767f5b64230047b7649212c79b073df795324d-exec
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

42 lines
1.2 KiB
Text
Executable file

{
"name": "atomically",
"repository": "github:fabiospampinato/atomically",
"description": "Read and write files atomically and reliably.",
"license": "MIT",
"version": "2.1.0",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"benchmark": "tsex benchmark",
"benchmarkLwatch": "tsex benchmark --watch",
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test:init": "esbuild --bundle --log-level=error --target=es2020 --platform=node --format=cjs src/index.ts > test/atomically.cjs",
"test": "npm run test:init && tap --disable-coverage",
"test:watch": "npm run test:init && tap --disable-coverage --watch",
"prepublishOnly": "npm run clean && npm run compile && npm run test"
},
"keywords": [
"atomic",
"read",
"write",
"file",
"reliable"
],
"dependencies": {
"stubborn-fs": "^2.0.0",
"when-exit": "^2.1.4"
},
"devDependencies": {
"@types/node": "^18.19.130",
"esbuild": "^0.18.20",
"require-inject": "^1.4.4",
"tap": "^21.1.1",
"tsex": "^4.0.2",
"typescript": "^5.9.3",
"write-file-atomic": "^7.0.0"
}
}