-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 802 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 802 Bytes
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
{
"name": "textql",
"version": "1.0.0",
"description": "TextQL Playbooks API client and CLI tool",
"module": "index.ts",
"type": "module",
"private": true,
"bin": {
"textql": "./index.ts"
},
"scripts": {
"start": "bun run index.ts",
"dev": "bun run --watch index.ts",
"example:basic": "bun run examples/basic-usage.ts",
"example:advanced": "bun run examples/advanced-usage.ts",
"build": "bun build index.ts --outdir dist --target bun",
"test": "bun test"
},
"keywords": [
"textql",
"playbooks",
"sql",
"automation",
"api",
"cli"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"bun": ">=1.0.0"
}
}