prisma-cache-nosql
Version:
<div> <a href="https://www.npmjs.com/package/prisma-cache-nosql"> <img alt="npm" src="https://img.shields.io/npm/v/prisma-cache-nosql?logo=npm&logoColor=white"> </a> <a href="https://github.com/BearToCode/prisma-cache-nosql/blob/master/LICENSE"> <i
85 lines (84 loc) • 1.87 kB
JSON
{
"name": "prisma-cache-nosql",
"version": "1.0.9",
"description": "",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"test:generate-client": "prisma generate --schema ./tests/prisma/schema.prisma",
"test:push-schema": "prisma db push --schema ./tests/prisma/schema.prisma",
"build": "rollup -c",
"test": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"commit": "git-cz",
"publish": "npx semantic-release",
"semantic-release": "semantic-release"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"author": "BearToCode",
"license": "MIT",
"peerDependencies": {
"prisma": "^5.7.0"
},
"optionalDependencies": {
"acebase": "^1.29.5"
},
"devDependencies": {
"@prisma/client": "^5.7.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.10.4",
"@types/object-hash": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"acebase": "^1.29.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prisma": "^5.7.0",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"semantic-release": "^22.0.12",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"dependencies": {
"chalk": "^5.3.0",
"object-hash": "^3.0.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/BearToCode/prisma-cache-nosql.git"
},
"keywords": [
"prisma",
"cache",
"nosql",
"acebase"
]
}