-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "vendorfiles",
"author": "Araxeus",
"description": "A CLI tool to manage vendor files",
"version": "1.2.2",
"type": "module",
"license": "MIT",
"repository": "https://github.com/Araxeus/vendorfiles",
"homepage": "https://github.com/Araxeus/vendorfiles",
"packageManager": "[email protected]",
"files": [
"dist"
],
"bin": {
"vendor": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"keywords": [
"vendor",
"vendor-files",
"package-manager",
"github-assets",
"cli-app",
"cli"
],
"scripts": {
"start": "bun b && bun dist/cli.js",
"b": "del-cli dist && tsc && bun cpy lib/auth.js lib/types.d.ts dist",
"lint": "bun biome check --write",
"check": "tsc --noEmit && bun biome ci && bun start sync",
"release": "bun check && npm publish"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@ltd/j-toml": "^1.38.0",
"@octokit/auth-oauth-device": "^7.1.1",
"@octokit/rest": "^21.0.1",
"commander": "^12.1.0",
"detect-indent": "^7.0.1",
"dotenv": "^16.4.5",
"env-paths": "^3.0.0",
"make-fetch-happen": "^13.0.1",
"open": "^10.1.0",
"parse-json": "^8.1.0",
"unarchive": "^1.1.3",
"yaml": "^2.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^22.1.0",
"@types/parse-json": "^4.0.2",
"cpy-cli": "^5.0.0",
"del-cli": "^5.1.0",
"type-fest": "^4.23.0",
"typescript": "^5.5.4"
},
"vendorDependencies": {
"fzf": {
"version": "0.38.0",
"repository": "https://github.com/junegunn/fzf",
"files": [
"LICENSE",
{
"{release}/fzf-{version}-linux_amd64.tar.gz": [
"fzf"
],
"{release}/fzf-{version}-windows_amd64.zip": {
"fzf.exe": "my-custom-fzf.exe"
}
}
]
},
"youtube-volume-scroll": {
"name": "youtube-volume-scroll",
"version": "v3.1.0",
"repository": "https://github.com/Araxeus/Youtube-Volume-Scroll",
"files": [
"external_assets/popup-light.png",
"{release}/youtube-volume-scroll_{version}_chromium.crx",
{
"LICENSE": "ytvs_LICENSE",
"{release}/youtube-volume-scroll_{version}_firefox.xpi": {
"style.css": "ytvs_{version}_style.css",
"META-INF/cose.sig": "ytvs_{version}_cose.sig"
}
}
]
},
"Cooltipz.css": {
"version": "v2.2.1",
"repository": "https://github.com/jackdomleo7/Cooltipz.css",
"files": [
"cooltipz.min.css",
{
"LICENSE": "COOLTIPZ_LICENSE"
}
],
"vendorFolder": "{vendorFolder}/Cooltipz"
},
"Coloris": {
"name": "Coloris",
"version": "v0.18.0",
"repository": "https://github.com/mdbassit/Coloris",
"files": [
"dist/coloris.min.js",
"dist/coloris.min.css",
{
"LICENSE": "COLORIS_LICENSE",
"README.md": "COLORIS_README.md"
}
],
"vendorFolder": "{vendorFolder}"
}
},
"vendorConfig": {
"vendorFolder": "./vendor"
},
"trustedDependencies": [
"@biomejs/biome"
]
}