-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 KB
/
package.json
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
{
"name": "@thisux/pocketbase-typegene",
"version": "1.0.0",
"description": "TypeScript type generator for PocketBase collections (CLI) & library. Still in development.",
"module": "index.ts",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pocketbase-typegen": "./dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "bun test/test.ts",
"build": "bun build ./src/index.ts --outdir ./dist",
"generate": "bun run ./src/index.ts",
"prepublishOnly": "bun run build",
"publish": "bun run build && npm publish"
},
"keywords": [
"pocketbase",
"typescript",
"type-generator",
"schema",
"bun"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thisuxhq/pocketbase-typegen.git"
},
"bugs": {
"url": "https://github.com/thisuxhq/pocketbase-typegen/issues"
},
"homepage": "https://github.com/thisuxhq/pocketbase-typegen#readme"
}