-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
61 lines (61 loc) · 1.28 KB
/
package.json
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
{
"name": "titanium",
"version": "7.1.5",
"author": "TiDev, Inc. <[email protected]>",
"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": "https://github.com/tidev/titanium-cli",
"preferGlobal": true,
"dependencies": {
"@xmldom/xmldom": "0.9.5",
"chalk": "5.3.0",
"commander": "12.1.0",
"execa": "8.0.1",
"fs-extra": "11.2.0",
"pretty-bytes": "6.1.1",
"prompts": "2.4.2",
"semver": "7.6.3",
"undici": "7.1.0",
"which": "5.0.0",
"wrap-ansi": "9.0.0",
"xpath": "0.0.34",
"yauzl": "3.2.0"
},
"devDependencies": {
"@reporters/github": "1.7.1",
"@vitest/coverage-istanbul": "2.1.8",
"c8": "10.1.2",
"eslint": "9.16.0",
"glob": "10.4.5",
"globals": "15.13.0",
"memory-streams": "0.1.3",
"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": "eslint",
"test": "node scripts/test.js",
"test-only": "node scripts/test.js --only"
},
"engines": {
"node": ">=18"
}
}