Rocky_Mountain_Vending/.pnpm-store/v10/files/49/858fb2df26f3234718751214f3e53103dd3c070beb02db3e55860245f390dc91bf02ceb42765421d0c2e1da1d7678c3ee1f9d616f64930cd708340a4d0635b
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

51 lines
No EOL
1.1 KiB
Text

{
"name": "@standard-schema/spec",
"description": "A standard interface for TypeScript schema validation libraries",
"version": "1.0.0",
"license": "MIT",
"author": "Colin McDonnell",
"homepage": "https://standardschema.dev",
"repository": {
"type": "git",
"url": "https://github.com/standard-schema/standard-schema"
},
"keywords": [
"typescript",
"schema",
"validation",
"standard",
"interface"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"scripts": {
"lint": "pnpm biome lint ./src",
"format": "pnpm biome format --write ./src",
"check": "pnpm biome check ./src",
"build": "tsup"
}
}