|
| 1 | +{ |
| 2 | + "name": "@owlprotocol/starter-envvars", |
| 3 | + "version": "3.0.0", |
| 4 | + "keywords": [], |
| 5 | + "private": true, |
| 6 | + "type": "module", |
| 7 | + "homepage": "https://github.com/owlprotocol/starter-templates", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "https://github.com/owlprotocol/starter-templates.git" |
| 11 | + }, |
| 12 | + "copyright": "Copyright 2024 Owl Protocol", |
| 13 | + "license": "MIT", |
| 14 | + "author": { |
| 15 | + "name": "Leo Vigna", |
| 16 | + |
| 17 | + "url": "https://github.com/leovigna" |
| 18 | + }, |
| 19 | + "files": [ |
| 20 | + "dist/*", |
| 21 | + "lib/*", |
| 22 | + "src/*", |
| 23 | + "LICENSE", |
| 24 | + "README.md" |
| 25 | + ], |
| 26 | + "main": "./lib/cjs/index.cjs", |
| 27 | + "module": "./lib/esm/index.mjs", |
| 28 | + "types": "./lib/types/index.d.mts", |
| 29 | + "exports": { |
| 30 | + ".": { |
| 31 | + "types": "./lib/types/index.d.ts", |
| 32 | + "browser": "./lib/esm/index.browser.js", |
| 33 | + "import": "./lib/esm/index.js", |
| 34 | + "require": "./lib/cjs/index.js" |
| 35 | + }, |
| 36 | + "./browser": { |
| 37 | + "types": "./lib/types/index.browser.d.ts", |
| 38 | + "browser": "./lib/esm/index.browser.js" |
| 39 | + } |
| 40 | + }, |
| 41 | + "scripts": { |
| 42 | + "build": "pnpm run codegen && npm-run-all -p tsc esbuild", |
| 43 | + "build:watch": "npm-run-all -p tsc:watch esbuild:watch", |
| 44 | + "clean": "rimraf lib dist", |
| 45 | + "codegen": "tsx src/genEnvVars.ts", |
| 46 | + "depcheck": "depcheck", |
| 47 | + "esbuild": "node esbuild.config.mjs", |
| 48 | + "esbuild:watch": "ESBUILD_WATCH=true node esbuild.config.mjs", |
| 49 | + "lint": "eslint", |
| 50 | + "lint:fix": "eslint --fix", |
| 51 | + "tsc": "tsc", |
| 52 | + "tsc:watch": "tsc -w" |
| 53 | + }, |
| 54 | + "dependencies": { |
| 55 | + "dotenv": "^16.4.5", |
| 56 | + "find-config": "^1.0.0" |
| 57 | + }, |
| 58 | + "devDependencies": { |
| 59 | + "@owlprotocol/esbuild-config": "^3.0.0", |
| 60 | + "@owlprotocol/eslint-config": "^3.0.0", |
| 61 | + "@owlprotocol/prettier-config": "^3.0.0", |
| 62 | + "@owlprotocol/tsconfig": "^3.0.0", |
| 63 | + "@types/eslint": "^8.44.2", |
| 64 | + "@types/find-config": "^1.0.2", |
| 65 | + "@types/node": "^20.11.10", |
| 66 | + "eslint": "^8.55.0", |
| 67 | + "npm-run-all": "^4.1.5", |
| 68 | + "rimraf": "^3.0.2", |
| 69 | + "tsx": "^4.11.0", |
| 70 | + "typescript": "5.4.5", |
| 71 | + "vite": "^5.1.6", |
| 72 | + "depcheck": "^1.4.7" |
| 73 | + }, |
| 74 | + "bugs": { |
| 75 | + "url": "https://github.com/owlprotocol/starter-templates/issues", |
| 76 | + |
| 77 | + }, |
| 78 | + "funding": "https://owlprotocol.xyz", |
| 79 | + "engines": { |
| 80 | + "node": "^18.0.0" |
| 81 | + } |
| 82 | +} |
0 commit comments