@quark-fw/clisma 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +47 -47
package/package.json CHANGED
@@ -1,49 +1,49 @@
1
1
  {
2
- "name": "@quark-fw/clisma",
3
- "version": "0.1.0",
4
- "description": "Prisma-like typed client and schema migrator for ClickHouse",
5
- "keywords": [
6
- "clickhouse",
7
- "orm",
8
- "prisma",
9
- "query-builder",
10
- "migrations",
11
- "typescript"
12
- ],
13
- "license": "MIT",
14
- "author": "Drus",
15
- "type": "module",
16
- "main": "dist/index.js",
17
- "types": "dist/index.d.ts",
18
- "exports": {
19
- ".": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.js"
22
- }
23
- },
24
- "files": [
25
- "dist"
26
- ],
27
- "sideEffects": false,
28
- "engines": {
29
- "node": ">=20"
30
- },
31
- "scripts": {
32
- "build": "tsc -p tsconfig.build.json",
33
- "typecheck": "tsc --noEmit",
34
- "test": "tsx --env-file=./src/test/.env ./src/test/index.ts",
35
- "test:unit": "tsx --test src/test/unit.test.ts",
36
- "prepublishOnly": "npm run typecheck && npm run test:unit && npm run build"
37
- },
38
- "dependencies": {
39
- "@clickhouse/client": "^1.17.0"
40
- },
41
- "devDependencies": {
42
- "@types/node": "^25.3.3",
43
- "tsx": "^4.21.0",
44
- "typescript": "^5.5.3"
45
- },
46
- "publishConfig": {
47
- "access": "public"
48
- }
2
+ "name": "@quark-fw/clisma",
3
+ "version": "0.1.1",
4
+ "description": "Prisma-like typed client and schema migrator for ClickHouse",
5
+ "keywords": [
6
+ "clickhouse",
7
+ "orm",
8
+ "prisma",
9
+ "query-builder",
10
+ "migrations",
11
+ "typescript"
12
+ ],
13
+ "license": "MIT",
14
+ "author": "Drus",
15
+ "type": "module",
16
+ "main": "dist/index.js",
17
+ "types": "dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "sideEffects": false,
28
+ "engines": {
29
+ "node": ">=20"
30
+ },
31
+ "scripts": {
32
+ "build": "tsc -p tsconfig.build.json",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "tsx --env-file=./src/test/.env ./src/test/index.ts",
35
+ "test:unit": "tsx --test src/test/unit.test.ts",
36
+ "prepublishOnly": "npm run typecheck && npm run test:unit && npm run build"
37
+ },
38
+ "dependencies": {
39
+ "@clickhouse/client": "^1.17.0"
40
+ },
41
+ "devDependencies": {
42
+ "@types/node": "^25.3.3",
43
+ "tsx": "^4.21.0",
44
+ "typescript": "^5.5.3"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ }
49
49
  }