-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ota-distribute",
"version": "1.0.0",
"packageManager": "[email protected]",
"dependencies": {
"@aws-sdk/abort-controller": "^3.374.0",
"@aws-sdk/client-s3": "^3.709.0",
"@commander-js/extra-typings": "^12.1.0",
"app-info-parser": "^1.1.6",
"autoprefixer": "^10.4.20",
"commander": "^12.1.0",
"kleur": "^4.1.5",
"mime-types": "^2.1.35",
"ora": "^8.1.1",
"postcss": "^8.4.49",
"s3-sync-client": "^4.3.1",
"tailwindcss": "^3.4.16",
"tmp-promise": "^3.0.3",
"url-join": "^5.0.0",
"vite": "^6.0.3",
"vite-plugin-html": "^3.2.2",
"vite-plugin-static-copy": "^2.2.0"
},
"type": "module",
"scripts": {
"lint": "eslint .",
"prepare": "tsup-node"
},
"bin": "./dist/ota-distribute.js",
"main": "./dist/ota-distribute.js",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@tsconfig/node22": "^22.0.0",
"@types/mime-types": "^2",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"repository": "workco/ota-distribute",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "UNLICENSED",
"author": {
"name": "Nick Lee",
"email": "[email protected]",
"url": "https://work.co"
},
"tsup": {
"splitting": false,
"entry": [
"src/**/*"
],
"clean": true,
"platform": "node",
"format": [
"esm"
],
"external": [
"*"
],
"outDir": "dist",
"loader": {
".ico": "copy",
".png": "copy",
".svg": "copy",
".html": "copy"
},
"bundle": false,
"treeshake": true
}
}