-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.59 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.59 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@vyr-e/tinykit",
"version": "0.1.0",
"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",
"require": "./dist/index.cjs"
},
"./core": {
"types": "./dist/src/client.d.ts",
"import": "./dist/src/client.js",
"require": "./dist/client.cjs"
},
"./schema": {
"types": "./dist/src/schema.d.ts",
"import": "./dist/src/schema.js",
"require": "./dist/schema.cjs"
},
"./query": {
"types": "./dist/src/query.d.ts",
"import": "./dist/src/query.js",
"require": "./dist/query.cjs"
},
"./pipe": {
"types": "./dist/src/pipe.d.ts",
"import": "./dist/src/pipe.js",
"require": "./dist/pipe.cjs"
},
"./ingest": {
"types": "./dist/src/ingest.d.ts",
"import": "./dist/src/ingest.js",
"require": "./dist/ingest.cjs"
},
"./types": {
"types": "./dist/src/types.d.ts",
"import": "./dist/src/types.js",
"require": "./dist/types.cjs"
},
"./utils": {
"types": "./dist/src/util.d.ts",
"import": "./dist/src/util.js",
"require": "./dist/util.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"tinybird",
"clickhouse",
"typescript",
"analytics",
"query-builder",
"schema",
"type-safe"
],
"repository": {
"type": "git",
"url": "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": ">=18.0.0"
},
"scripts": {
"build": "tsc && npm run build:cjs",
"build:cjs": "echo 'Building CommonJS exports...' && npm run build:cjs:client && npm run build:cjs:schema && npm run build:cjs:query && npm run build:cjs:pipe && npm run build:cjs:ingest && npm run build:cjs:types && npm run build:cjs:util && npm run build:cjs:index",
"build:cjs:client": "echo 'module.exports = require(\"./src/client.js\");' > dist/client.cjs",
"build:cjs:schema": "echo 'module.exports = require(\"./src/schema.js\");' > dist/schema.cjs",
"build:cjs:query": "echo 'module.exports = require(\"./src/query.js\");' > dist/query.cjs",
"build:cjs:pipe": "echo 'module.exports = require(\"./src/pipe.js\");' > dist/pipe.cjs",
"build:cjs:ingest": "echo 'module.exports = require(\"./src/ingest.js\");' > dist/ingest.cjs",
"build:cjs:types": "echo 'module.exports = require(\"./src/types.js\");' > dist/types.cjs",
"build:cjs:util": "echo 'module.exports = require(\"./src/util.js\");' > dist/util.cjs",
"build:cjs:index": "echo 'module.exports = require(\"./index.js\");' > dist/index.cjs",
"dev": "tsc --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"prepack": "npm run build"
},
"dependencies": {
"prompts": "^2.4.2",
"zod": "^3.22.4",
"zodest": "^0.3.2"
},
"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"
}
}