UNPKG

@tragedy-labs/sprite

Version:

A TypeScript driver for ArcadeDB

72 lines (71 loc) 2.01 kB
{ "name": "@tragedy-labs/sprite", "version": "0.1.6", "description": "A TypeScript driver for ArcadeDB", "homepage": "https://sprite.tragedy.dev", "repository": { "type": "git", "url": "https://github.com/tragedy-labs/sprite.git" }, "main": "./dist/index.js", "module": "./dist/index.js", "type": "module", "scripts": { "dev": "nodemon --watch ./src --ext ts --exec 'rimraf ./dist && tsc && node ./dist/index.js'", "build": "rimraf ./dist && tsc -p ./tsconfig.build.json", "docs:api": "typedoc ./src/api.ts --out ./docs/api --darkHighlightTheme dracula --lightHighlightTheme github-light", "docs:json": "typedoc ./src/api.ts --json ./docs/_data/docs.json ", "docs:site": "ts-node ./src/dev/*", "test": "jest ./test --coverage", "test:all": "jest ./test/ --coverage", "test:unit": "jest ./test/unit/", "test:integration": "jest ./test/integration/", "lint": "pnpm eslint --fix ./test/ ./src", "format": "pnpm prettier --write ./test/ ./src", "exec": "pnpm build && node ./dist/index.js" }, "keywords": [ "typescript", "database", "driver", "arcadedb", "orientdb", "multi-modal", "graph-database", "graph", "document-store", "document-database", "crud", "client", "sql", "nosql", "typescript-driver", "arcadedb-driver", "sprite", "transaction", "transactional", "api", "rest-api" ], "author": "Austin Pittman", "license": "MIT", "devDependencies": { "@eslint/js": "^9.8.0", "@types/eslint__js": "^8.42.3", "@types/jest": "^29.5.12", "@types/node": "^22.1.0", "dotenv": "^16.4.5", "eslint": "^9.8.0", "eslint-plugin-tsdoc": "^0.3.0", "globals": "^16.1.0", "jest": "^29.7.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", "ts-jest": "^29.2.4", "ts-jest-resolver": "^2.0.1", "ts-node": "^10.9.2", "typedoc": "^0.26.5", "typescript": "^5.5.4", "typescript-eslint": "^8.0.1" } }