Files

78 lines
2.6 KiB
JSON
Raw Permalink Normal View History

2025-10-23 20:14:59 -06:00
{
"name": "@skyvern/client",
"version": "1.0.19",
2025-10-23 20:14:59 -06:00
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Skyvern-AI/skyvern.git",
"directory": "skyvern-ts/client"
},
2025-10-23 20:14:59 -06:00
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"default": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"reference.md",
"README.md",
"LICENSE"
],
"scripts": {
"format": "biome format --write --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"format:check": "biome format --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"lint": "biome lint --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"lint:fix": "biome lint --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"check": "biome check --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"check:fix": "biome check --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"build": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"build:esm": "tsc --project ./tsconfig.esm.json && node scripts/rename-to-esm-files.js dist/esm",
"test": "vitest",
"test:unit": "vitest --project unit",
"test:wire": "vitest --project wire"
},
2025-12-10 11:12:47 -07:00
"dependencies": {
"playwright": "^1.48.0"
},
2025-10-23 20:14:59 -06:00
"devDependencies": {
2026-02-17 20:30:55 -08:00
"webpack": "^5.97.1",
2025-10-23 20:14:59 -06:00
"ts-loader": "^9.5.1",
"vitest": "^3.2.4",
"msw": "2.11.2",
"@types/node": "^18.19.70",
"typescript": "~5.7.2",
"@biomejs/biome": "2.2.5"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"stream": false
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18.0.0"
},
2025-11-07 12:30:43 -07:00
"sideEffects": false,
"description": "The Skyvern TypeScript library provides convenient access to the Skyvern APIs from TypeScript.",
"publishConfig": {
"access": "public",
"provenance": true
2025-11-07 12:30:43 -07:00
}
2025-10-23 20:14:59 -06:00
}