-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.53 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
{
"name": "@appolabs/appo",
"version": "5.5.4",
"description": "Appo CLI — create and manage native apps from your terminal or an agent.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/appolabs/appo.git"
},
"homepage": "https://github.com/appolabs/appo#readme",
"bugs": {
"url": "https://github.com/appolabs/appo/issues"
},
"keywords": [
"appo",
"cli",
"mobile",
"app-store",
"publishing",
"ship",
"ios",
"android"
],
"author": "Appolabs",
"type": "module",
"bin": {
"appo": "bin/appo.mjs"
},
"exports": {
"./ops": {
"types": "./src/ops.d.mts",
"default": "./src/ops.mjs"
},
"./api": {
"types": "./src/api.d.mts",
"default": "./src/api.mjs"
},
"./config": {
"types": "./src/config.d.mts",
"default": "./src/config.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest run",
"test:integration": "vitest run test/integration/",
"test:watch": "vitest",
"lint": "eslint --ext .mjs bin/ src/ test/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run typecheck && npm test"
},
"files": [
"bin",
"src",
"README.md",
"llms.txt"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.19.21",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"publishConfig": {
"access": "public"
}
}