-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.59 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.59 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
{
"name": "tvos-assets",
"version": "1.2.1",
"description": "CLI tool to generate tvOS Images.xcassets from icon and background images",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"tvos-assets": "dist/index.js"
},
"files": [
"dist",
"schema.json",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"tvos",
"apple-tv",
"xcassets",
"images.xcassets",
"asset-catalog",
"xcode",
"brand-assets",
"brandassets",
"app-icon",
"tvos-icon",
"top-shelf",
"topshelf",
"parallax",
"react-native",
"cli"
],
"author": "Keiver Hernandez",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/keiver/tvos-assets.git"
},
"homepage": "https://github.com/keiver/tvos-assets#readme",
"bugs": {
"url": "https://github.com/keiver/tvos-assets/issues"
},
"dependencies": {
"archiver": "^7.0.1",
"commander": "^12.1.0",
"picocolors": "^1.1.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/archiver": "^6.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}