-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@vyr-e/tinykit",
"version": "0.3.1",
"description": "TypeSafe query client for Tinybird with functional API",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/src/client.d.ts",
"import": "./dist/src/client.js"
},
"./schema": {
"types": "./dist/src/schema.d.ts",
"import": "./dist/src/schema.js"
},
"./query": {
"types": "./dist/src/query.d.ts",
"import": "./dist/src/query.js"
},
"./pipe": {
"types": "./dist/src/pipe.d.ts",
"import": "./dist/src/pipe.js"
},
"./ingest": {
"types": "./dist/src/ingest.d.ts",
"import": "./dist/src/ingest.js"
},
"./types": {
"types": "./dist/src/types.d.ts",
"import": "./dist/src/types.js"
},
"./utils": {
"types": "./dist/src/util.d.ts",
"import": "./dist/src/util.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"tinybird",
"clickhouse",
"typescript",
"analytics",
"query-builder",
"schema",
"type-safe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vyr-e/tinykit.git"
},
"homepage": "https://github.com/vyr-e/tinykit#readme",
"bugs": {
"url": "https://github.com/vyr-e/tinykit/issues"
},
"author": "Bethel-nz <bethelnzofficial@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"prepack": "npm run build"
},
"dependencies": {
"commander": "^14.0.0",
"esbuild": "^0.25.0",
"prompts": "^2.4.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.10.0",
"@types/prompts": "^2.4.9",
"typescript": "^5.3.0"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"bin": {
"tinykit": "dist/cli.js"
},
"publishConfig": {
"access": "public"
}
}