-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.28 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
{
"name": "titanium",
"version": "9.1.0",
"author": "TiDev, Inc. <npm@tidev.io>",
"description": "Command line interface for building Titanium SDK apps",
"type": "module",
"keywords": [
"titanium",
"titanium-sdk",
"tidev",
"mobile",
"ios",
"iphone",
"android"
],
"homepage": "https://titaniumsdk.com",
"bugs": "https://github.com/tidev/titanium-cli/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/tidev/titanium-cli.git"
},
"preferGlobal": true,
"dependencies": {
"@xmldom/xmldom": "0.9.12",
"chalk": "6.0.0",
"commander": "15.0.0",
"execa": "10.0.1",
"fs-extra": "11.4.0",
"pretty-bytes": "7.1.3",
"prompts": "2.4.2",
"semver": "7.8.5",
"undici": "8.10.2",
"which": "7.0.0",
"wrap-ansi": "10.0.1",
"xpath": "0.0.34",
"yauzl": "3.4.0"
},
"devDependencies": {
"@reporters/github": "2.1.3",
"@vitest/coverage-v8": "4.1.9",
"c8": "12.0.0",
"glob": "13.0.6",
"globals": "17.12.0",
"memory-streams": "0.1.3",
"oxlint": "1.81.0",
"proxy": "4.1.0",
"vitest": "4.1.11"
},
"license": "Apache-2.0",
"bin": {
"ti": "bin/ti.js",
"titanium": "bin/ti.js"
},
"files": [
"./src"
],
"scripts": {
"coverage": "vitest --coverage",
"lint": "oxlint",
"test": "vitest"
},
"engines": {
"node": ">=22.19.0"
}
}