|
1 | 1 | { |
2 | 2 | "name": "@blitznocode/blitz-orm", |
3 | | - "version": "0.10.1", |
| 3 | + "version": "0.10.2", |
4 | 4 | "main": "dist/index.cjs", |
5 | 5 | "module": "./dist/index.mjs", |
6 | 6 | "types": "dist/index.d.ts", |
|
16 | 16 | "build": "tsup src/index.ts --format cjs,esm --clean --dts --treeshake --minify", |
17 | 17 | "dev": "tsup --dts --watch --sourcemap", |
18 | 18 | "knip": "knip", |
19 | | - "husky:prepare": "husky install", |
| 19 | + "husky:prepare": "husky init", |
20 | 20 | "lint:check": "eslint src --quiet --ext .ts,.tsx", |
21 | 21 | "lint:fix": "eslint src --ext .ts,.tsx --fix", |
22 | 22 | "lint-staged": "lint-staged", |
|
27 | 27 | "test:query": "./tests/test.sh query.test.ts", |
28 | 28 | "test:typedb-query": "./tests/test.sh typedb/unit/queries", |
29 | 29 | "test:typedb-mutation": "./tests/test.sh typedb/unit/mutations", |
30 | | - "test:typedb-ignoreTodo": "./tests/test.sh -t \"^(?!.*TODO:).*\" --detectOpenHandles typedb", |
| 30 | + "test:typedb-ignoreTodo": "vitest typedb -t \"^(?!.*TODO:).*\" ", |
31 | 31 | "test:surrealdb-query": "./tests/test.sh surrealdb/unit/queries/query.test.ts", |
32 | 32 | "test:multidb": "./tests/test.sh --detectOpenHandles multidb", |
33 | 33 | "test:ignoreTodo": "./tests/test.sh -t \"^(?!.*TODO:).*\" --detectOpenHandles", |
34 | 34 | "test:buildSchema": "npx esbuild tests/mocks/buildSchema.ts --bundle --loader:.ts=ts --platform=node --format=cjs --outfile=tests/mocks/buildSchema.js && node tests/mocks/buildSchema.js", |
35 | 35 | "test:watch": "./tests/test.sh --watch", |
36 | | - "types": "tsc --noEmit" |
| 36 | + "types": "tsc --noEmit", |
| 37 | + "prepare": "husky" |
37 | 38 | }, |
38 | 39 | "private": false, |
39 | 40 | "license": "AGPL-3.0-only", |
|
54 | 55 | "dependencies": { |
55 | 56 | "acorn": "^8.11.3", |
56 | 57 | "case-anything": "^2.1.13", |
| 58 | + "dotenv": "^16.4.5", |
57 | 59 | "immer": "10.0.4", |
58 | | - "nanoid": "3", |
| 60 | + "nanoid": "^5.0.7", |
59 | 61 | "object-traversal": "^1.0.1", |
60 | 62 | "radash": "^11.0.0", |
61 | 63 | "robot3": "^0.4.1", |
62 | 64 | "surrealdb.node": "^0.3.0", |
63 | 65 | "typedb-driver": "2.26.6-rc1", |
64 | | - "uuid": "^9.0.1" |
| 66 | + "uuid": "^9.0.1", |
| 67 | + "vitest": "^1.5.0" |
65 | 68 | }, |
66 | 69 | "devDependencies": { |
67 | 70 | "@blitznocode/eslint-config": "^1.1.0", |
|
0 commit comments