-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.74 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
{
"name": "superwall",
"version": "1.0.1",
"description": "The official CLI for managing Superwall from your terminal or coding agent.",
"keywords": [
"superwall",
"paywall",
"cli",
"subscriptions",
"app-store-connect",
"agent",
"ios",
"android"
],
"homepage": "https://github.com/superwall/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/superwall/cli.git"
},
"bugs": {
"url": "https://github.com/superwall/cli/issues"
},
"author": "Superwall",
"type": "module",
"bin": {
"superwall": "dist/bin.js",
"sw": "dist/bin.js"
},
"files": [
"dist",
"skills",
"prompts",
"LICENSE",
"package.json",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.3.14",
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"regen:asc": "tsx scripts/regen-asc-index.ts",
"dev": "bun bin.ts",
"test": "tsx --test $(rg --files tests -g '*.test.ts')",
"link:global": "tsdown && bun link",
"typecheck": "tsc --noEmit",
"prepack": "bun run build",
"prepublishOnly": "bun run typecheck && bun run test"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.201",
"ansi-escapes": "^7.3.0",
"fast-glob": "^3.3.3",
"ink": "^5.2.1",
"ink-spinner": "^5.0.0",
"picocolors": "^1.1.1",
"react": "^18.3.1",
"wrap-ansi": "^9.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^18.3.31",
"@types/yargs": "^17.0.33",
"ink-testing-library": "^4.0.0",
"tsdown": "^0.15.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}