UNPKG

weaviate-ts-embedded

Version:
76 lines (75 loc) 2.23 kB
{ "name": "weaviate-ts-embedded", "version": "1.2.0", "description": "Weaviate TypeScript EmbeddedDB", "main": "dist/index.js", "types": "./dist/index.d.ts", "engines": { "node": ">=16.0.0" }, "type": "module", "files": [ "/dist/index.js", "/dist/index.mjs", "/dist/index.d.ts" ], "scripts": { "test": "tsc -noEmit -p tsconfig-test.json && jest --useStderr --runInBand --detectOpenHandles", "build": "npm run lint && tsup src/index.ts --format esm --dts --clean --platform node --minify", "prepack": "npm run build", "lint": "eslint --ext .ts,.js .", "lint:fix": "npm run lint -- --fix", "format": "prettier --write --no-error-on-unmatched-pattern '**/*.{ts,js}' '!dist/**'", "format:check": "prettier --check --no-error-on-unmatched-pattern '**/*.{ts,js}' '!dist/**'", "prepare": "husky install" }, "repository": { "type": "git", "url": "git+https://github.com/weaviate/typescript-embedded.git" }, "keywords": [ "weaviate" ], "author": "Weaviate", "license": "SEE LICENSE IN LICENSE", "bugs": { "url": "https://github.com/weaviate/typescript-embedded/issues" }, "homepage": "https://github.com/weaviate/typescript-embedded#readme", "dependencies": { "adm-zip": "^0.5.10", "tar": "^6.1.13", "weaviate-ts-client": "^1.3.3" }, "devDependencies": { "@babel/core": "^7.20.12", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", "@curveball/bodyparser": "^0.5.0", "@curveball/core": "^0.20.0", "@rollup/plugin-babel": "^5.3.1", "@types/adm-zip": "^0.5.0", "@types/jest": "^29.4.0", "@types/node": "^18.14.0", "@types/tar": "^6.1.4", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "babel-jest": "^29.4.3", "eslint": "^8.40.0", "eslint-config-prettier": "^8.7.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.3", "jest": "^29.4.3", "lint-staged": "^13.2.0", "prettier": "^2.8.4", "ts-jest": "^29.0.5", "tsup": "^6.7.0", "typescript": "^4.9.5" }, "lint-staged": { "*.{ts,js}": [ "npm run format:check", "npm run lint -- --cache" ] } }