UNPKG

snowflake-promise

Version:

A Promise-based, TypeScript-friendly helper for the Snowflake SDK

75 lines (74 loc) 1.79 kB
{ "name": "snowflake-promise", "version": "5.0.0", "description": "A Promise-based, TypeScript-friendly helper for the Snowflake SDK", "repository": { "type": "git", "url": "git+https://github.com/natesilva/snowflake-promise.git" }, "bugs": "https://github.com/natesilva/snowflake-promise/issues", "license": "MIT", "author": "Nate Silva <nate@natesilva.com>", "keywords": [ "snowflake", "database", "data warehouse", "warehouse", "promise", "typescript" ], "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist/**" ], "scripts": { "clean": "del-cli dist coverage", "build": "tsc && tsup", "prepublishOnly": "npm run clean && npm run build", "prettier": "prettier --write \"{src,test}/**/*.?(ts|json)\"", "lint": "eslint .", "test": "vitest run", "test:watch": "vitest --ui --coverage.enabled=true", "test:coverage": "vitest run --coverage" }, "engines": { "node": ">=20" }, "devDependencies": { "@eslint/js": "^9.22.0", "@tsconfig/node-ts": "^23.6.1", "@tsconfig/node20": "^20.1.6", "@types/node": "^20.19.10", "@vitest/coverage-v8": "^3.0.9", "@vitest/ui": "^3.0.9", "del-cli": "^6.0.0", "eslint": "^9.22.0", "prettier": "^3.5.3", "tsup": "^8.5.0", "tsx": "^4.19.3", "typescript": "^5.8.2", "typescript-eslint": "^8.26.1", "vitest": "^3.0.9" }, "volta": { "node": "20.19.4" }, "dependencies": { "type-fest": "^4.37.0" }, "peerDependencies": { "snowflake-sdk": "^2.1" } }