-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.3 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.3 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
{
"name": "adapty",
"description": "Adapty command line interface",
"version": "0.1.5",
"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",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/sinon": "^21.0.0",
"chai": "^4",
"eslint": "^9",
"eslint-config-oclif": "^6",
"eslint-config-prettier": "^10",
"mocha": "^10",
"oclif": "^4",
"shx": "^0.3.3",
"sinon": "^21.0.2",
"ts-node": "^10",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"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": "./dist/commands",
"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"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaptyteam/adapty-cli.git"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint",
"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"
},
"types": "dist/index.d.ts"
}