UNPKG

@omneedia/storage-js

Version:

Isomorphic storage client for Omneedia.

70 lines (69 loc) 2.24 kB
{ "name": "@omneedia/storage-js", "version": "1.0.0", "description": "Isomorphic storage client for Omneedia.", "keywords": [ "javascript", "typescript", "omneedia" ], "homepage": "https://github.com/omneedia/storage-js", "bugs": "https://github.com/omneedia/storage-js/issues", "license": "MIT", "author": "Omneedia", "files": [ "dist", "src" ], "main": "dist/main/index.js", "module": "dist/module/index.js", "types": "dist/module/index.d.ts", "sideEffects": false, "repository": "omneedia/storage-js", "scripts": { "clean": "rimraf dist docs/v2", "format": "prettier --write \"{src,test}/**/*.ts\"", "build": "genversion src/lib/version.ts --es6 && run-s clean format build:*", "build:main": "tsc -p tsconfig.json", "build:module": "tsc -p tsconfig.module.json", "build:umd": "webpack", "types-generate": "dts-gen -m '@supabase/storage-js' -s", "test": "run-s test:clean test:infra test:suite test:clean", "test:suite": "jest --runInBand", "test:infra": "cd infra && docker-compose down && docker-compose up -d && sleep 10", "test:clean": "cd infra && docker-compose down --remove-orphans", "docs": "typedoc --entryPoints src/index.ts --out docs/v2 --entryPoints src/packages/* --excludePrivate --excludeProtected", "docs:json": "typedoc --json docs/v2/spec.json --entryPoints src/index.ts --entryPoints src/packages/* --excludePrivate --excludeExternals --excludeProtected" }, "dependencies": { "cross-fetch": "^3.1.5" }, "devDependencies": { "@types/jest": "^26.0.13", "form-data": "^4.0.0", "genversion": "^3.0.1", "husky": "^4.3.0", "jest": "^26.4.1", "npm-run-all": "^4.1.5", "prettier": "^2.1.2", "pretty-quick": "^3.1.0", "rimraf": "^3.0.2", "semantic-release-plugin-update-version-in-files": "^1.1.0", "ts-jest": "^26.3.0", "ts-loader": "^8.0.11", "typedoc": "^0.22.16", "typescript": "^4.6.3", "webpack": "^5.4.0", "webpack-cli": "^4.2.0" }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } }, "jsdelivr": "dist/umd/supabase.js", "unpkg": "dist/umd/supabase.js", "publishConfig": { "access": "public" } }