-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 4.1 KB
/
Copy pathpackage.json
File metadata and controls
160 lines (160 loc) · 4.1 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "adapty",
"description": "Adapty command line interface",
"version": "0.8.7",
"author": "Adapty team <support@adapty.io>",
"bin": {
"adapty": "./bin/run.js"
},
"bugs": {
"url": "https://github.com/adaptyteam/adapty-cli/issues"
},
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"open": "^11.0.0"
},
"devDependencies": {
"@eslint/compat": "^1",
"@eslint/js": "^9.39.2",
"@oclif/test": "^4",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^22",
"@types/sinon": "^21.0.0",
"chai": "^4",
"eslint": "^9",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-n": "^18.3.0",
"mocha": "^10",
"oclif": "^4",
"shx": "^0.3.3",
"sinon": "^21.0.2",
"ts-node": "^10",
"typescript": "^5",
"typescript-eslint": "^8.70.0"
},
"engines": {
"node": "^22 || >=24"
},
"packageManager": "pnpm@10.28.1",
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"homepage": "https://adapty.io/docs/developer-cli",
"keywords": [
"adapty",
"cli",
"subscriptions",
"in-apps",
"purchases"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "adapty",
"dirname": "adapty",
"commands": {
"strategy": "pattern",
"target": "./dist/commands",
"globPatterns": [
"**/*.+(js|cjs|mjs|ts|tsx|mts|cts)",
"!**/*.+(d.ts|test.ts|test.js|spec.ts|spec.js|d.mts|d.cts)?(x)",
"!**/lib/**"
]
},
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"auth": {
"description": "Authentication commands"
},
"apps": {
"description": "Manage Adapty apps"
},
"products": {
"description": "Manage products"
},
"access-levels": {
"description": "Manage access levels"
},
"paywalls": {
"description": "Manage paywalls"
},
"placements": {
"description": "Manage placements"
},
"flows": {
"description": "Manage flows (onboardings)"
},
"flows:config": {
"description": "Read and write a flow's builder config"
},
"segments": {
"description": "List segments"
},
"asa": {
"description": "Apple Search Ads: campaigns, keywords, metrics and automations (scoped by the token's company, no --app)"
},
"asa:apps": {
"description": "Apps promoted in Apple Search Ads"
},
"asa:orgs": {
"description": "Apple Search Ads organizations"
},
"asa:campaigns": {
"description": "Manage Apple Search Ads campaigns"
},
"asa:ad-groups": {
"description": "Manage ad groups"
},
"asa:keywords": {
"description": "Manage targeting keywords"
},
"asa:negative-keywords": {
"description": "Manage negative keywords"
},
"asa:search-terms": {
"description": "Search terms your ads matched"
},
"asa:ads": {
"description": "Manage ads"
},
"asa:product-pages": {
"description": "Custom product pages"
},
"asa:creatives": {
"description": "Creatives that back ads"
},
"asa:automations": {
"description": "Rule-based automations"
},
"asa:metrics": {
"description": "Metrics and overviews"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaptyteam/adapty-cli.git"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"check:agent-docs": "oclif manifest && node scripts/check-agent-docs.mjs",
"lint": "eslint --max-warnings 0",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm run lint",
"prepack": "oclif manifest && oclif readme",
"prepublishOnly": "pnpm build && oclif manifest",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"publish:beta": "npm publish --tag beta"
},
"types": "dist/index.d.ts"
}