|
| 1 | +{ |
| 2 | + "name": "@osdk/vite-plugin-branch", |
| 3 | + "version": "0.0.0", |
| 4 | + "license": "Apache-2.0", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "https://github.com/palantir/osdk-ts.git" |
| 8 | + }, |
| 9 | + "exports": { |
| 10 | + ".": { |
| 11 | + "browser": "./build/browser/index.js", |
| 12 | + "import": { |
| 13 | + "types": "./build/types/index.d.ts", |
| 14 | + "default": "./build/esm/index.js" |
| 15 | + }, |
| 16 | + "require": "./build/cjs/index.cjs", |
| 17 | + "default": "./build/browser/index.js" |
| 18 | + }, |
| 19 | + "./*": { |
| 20 | + "browser": "./build/browser/public/*.js", |
| 21 | + "import": { |
| 22 | + "types": "./build/types/public/*.d.ts", |
| 23 | + "default": "./build/esm/public/*.js" |
| 24 | + }, |
| 25 | + "require": "./build/cjs/public/*.cjs", |
| 26 | + "default": "./build/browser/public/*.js" |
| 27 | + } |
| 28 | + }, |
| 29 | + "scripts": { |
| 30 | + "check-attw": "attw --pack .", |
| 31 | + "check-spelling": "cspell --quiet .", |
| 32 | + "clean": "rm -rf lib dist types build tsconfig.tsbuildinfo", |
| 33 | + "fix-lint": "oxlint -c ./oxlint.config.ts --fix . && oxfmt -c ../../oxfmt.config.ts .", |
| 34 | + "lint": "oxlint -c ./oxlint.config.ts . && oxfmt -c ../../oxfmt.config.ts --check .", |
| 35 | + "test": "vitest run", |
| 36 | + "transpileBrowser": "monorepo.tool.transpile -f esm -m normal -t browser", |
| 37 | + "transpileCjs": "monorepo.tool.transpile -f cjs -m bundle -t node", |
| 38 | + "transpileEsm": "monorepo.tool.transpile -f esm -m normal -t node", |
| 39 | + "transpileTypes": "monorepo.tool.transpile -f esm -m types -t node", |
| 40 | + "typecheck": "tsc --noEmit --emitDeclarationOnly false", |
| 41 | + "watch": "tsc --watch" |
| 42 | + }, |
| 43 | + "dependencies": { |
| 44 | + "execa": "^9.6.0" |
| 45 | + }, |
| 46 | + "peerDependencies": { |
| 47 | + "vite": "*" |
| 48 | + }, |
| 49 | + "devDependencies": { |
| 50 | + "@osdk/monorepo.api-extractor": "workspace:~", |
| 51 | + "@osdk/monorepo.tsconfig": "workspace:~", |
| 52 | + "@types/node": "^20.19.13", |
| 53 | + "typescript": "~5.5.4" |
| 54 | + }, |
| 55 | + "publishConfig": { |
| 56 | + "access": "public" |
| 57 | + }, |
| 58 | + "files": [ |
| 59 | + "build/cjs", |
| 60 | + "build/esm", |
| 61 | + "build/browser", |
| 62 | + "build/types", |
| 63 | + "CHANGELOG.md", |
| 64 | + "package.json", |
| 65 | + "templates", |
| 66 | + "*.d.ts" |
| 67 | + ], |
| 68 | + "main": "./build/cjs/index.cjs", |
| 69 | + "module": "./build/esm/index.js", |
| 70 | + "types": "./build/cjs/index.d.cts", |
| 71 | + "type": "module" |
| 72 | +} |
0 commit comments