@tushar-br/file11 1.0.72 → 1.0.76

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 CHANGED
@@ -1,186 +1 @@
1
- # tushar-br-icons
2
-
3
- > Minimal developer SVG icon library — 100 clean, outline-style icons for web and UI projects.
4
-
5
- [![npm version](https://img.shields.io/npm/v/tushar-br-icons.svg)](https://www.npmjs.com/package/tushar-br-icons)
6
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](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/package.json CHANGED
@@ -1,33 +1,28 @@
1
1
  {
2
2
  "name": "@tushar-br/file11",
3
- "version": "1.0.72",
3
+ "version": "1.0.76",
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 \"const icons = require('.'); const keys = Object.keys(icons); console.log('Total exported keys:', keys.length); console.log('Sample icons: github, code, database'); console.log(icons.github ? 'github OK' : 'github MISSING'); console.log(icons.code ? 'code OK' : 'code MISSING'); console.log(icons.database ? 'database OK' : 'database MISSING');\""
8
+ "test": "node -e \"console.log('@tushar-br/file11 system active');\""
9
9
  },
10
10
  "keywords": [
11
- "icons",
12
- "svg",
13
- "developer",
14
- "ui",
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/tushar-br-icons.git"
20
+ "url": "git+https://github.com/tushar-br/file11.git"
26
21
  },
27
22
  "bugs": {
28
- "url": "https://github.com/tushar-rathod/tushar-br-icons/issues"
23
+ "url": "https://github.com/tushar-br/file11/issues"
29
24
  },
30
- "homepage": "https://github.com/tushar-rathod/tushar-br-icons#readme",
25
+ "homepage": "https://github.com/tushar-br/file11#readme",
31
26
  "files": [
32
27
  "staging_area/",
33
28
  "index.js",
Binary file