-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.32 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.32 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
{
"name": "titanium",
"version": "8.1.2",
"author": "TiDev, Inc. <npm@tidev.io>",
"description": "Command line interface for building Titanium SDK apps",
"type": "module",
"keywords": [
"titanium",
"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.8",
"chalk": "5.6.2",
"commander": "14.0.2",
"execa": "9.6.1",
"fs-extra": "11.3.3",
"pretty-bytes": "7.1.0",
"prompts": "2.4.2",
"semver": "7.7.3",
"undici": "7.18.2",
"which": "6.0.0",
"wrap-ansi": "9.0.2",
"xpath": "0.0.34",
"yauzl": "3.2.0"
},
"devDependencies": {
"@reporters/github": "1.11.0",
"@vitest/coverage-istanbul": "4.0.16",
"c8": "10.1.3",
"glob": "13.0.0",
"globals": "16.5.0",
"memory-streams": "0.1.3",
"oxlint": "1.36.0",
"proxy": "2.2.0"
},
"license": "Apache-2.0",
"bin": {
"ti": "bin/ti.js",
"titanium": "bin/ti.js"
},
"files": [
"./src"
],
"scripts": {
"coverage": "node scripts/test.js --coverage",
"lint": "oxlint",
"test": "node scripts/test.js",
"test-only": "node scripts/test.js --only"
},
"engines": {
"node": ">=20.18.1"
}
}