-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.76 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
{
"name": "@freeticket/cli",
"version": "0.7.1",
"description": "Official FreeTicket CLI — consumes the B2B REST API for events, sales, tickets, memberships, venues, staff, and reports.",
"keywords": [
"freeticket",
"cli",
"ticketing",
"events",
"api"
],
"homepage": "https://github.com/AppFreeticket/freeticket-cli#readme",
"bugs": "https://github.com/AppFreeticket/freeticket-cli/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/AppFreeticket/freeticket-cli.git"
},
"license": "MIT",
"author": "FreeTicket",
"type": "module",
"packageManager": "pnpm@10.33.0",
"bin": {
"ft": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"generate": "openapi-ts && openapi-ts -f openapi-ts.admin.config.ts",
"sync-openapi": "tsx scripts/sync-openapi.ts",
"sync-openapi:admin": "FT_OPENAPI_URL=${FT_ADMIN_OPENAPI_URL:-https://admin.appfreeticket.com/api/admin/openapi.json} FT_OPENAPI_OUT=admin-openapi.json tsx scripts/sync-openapi.ts",
"lint": "biome check .",
"format": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@hey-api/client-fetch": "^0.10.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@changesets/cli": "^2.31.0",
"@hey-api/openapi-ts": "^0.64.0",
"@types/node": "^22.10.0",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}