@raveeshn/superblocknpm 1.0.0

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 ADDED
@@ -0,0 +1,40 @@
1
+ # @raveesh-test/superblocknpm
2
+
3
+ Super Blocky font package with CSS.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @raveesh-test/superblocknpm
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Import the CSS file in your project:
14
+
15
+ ```javascript
16
+ import '@raveesh-test/superblocknpm';
17
+ ```
18
+
19
+ Or import directly in your CSS:
20
+
21
+ ```css
22
+ @import '@raveesh-test/superblocknpm';
23
+ ```
24
+
25
+ Then use the font in your styles:
26
+
27
+ ```css
28
+ .my-element {
29
+ font-family: 'Super Blocky', sans-serif;
30
+ }
31
+ ```
32
+
33
+ ## Files Included
34
+
35
+ - `index.css` - CSS file with @font-face declaration
36
+ - `Super Blocky.ttf` - TrueType font file
37
+
38
+ ## License
39
+
40
+ ISC
Binary file
package/index.css ADDED
@@ -0,0 +1,7 @@
1
+ @font-face {
2
+ font-family: 'Super Blocky';
3
+ src: url('./Super Blocky.ttf') format('truetype');
4
+ font-weight: normal;
5
+ font-style: normal;
6
+ font-display: swap;
7
+ }
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@raveeshn/superblocknpm",
3
+ "version": "1.0.0",
4
+ "description": "Super Blocky font package with CSS",
5
+ "main": "index.css",
6
+ "files": [
7
+ "index.css",
8
+ "Super Blocky.ttf"
9
+ ],
10
+ "exports": {
11
+ ".": "./index.css",
12
+ "./font": "./Super Blocky.ttf",
13
+ "./Super Blocky.ttf": "./Super Blocky.ttf"
14
+ },
15
+ "keywords": [
16
+ "font",
17
+ "super-blocky",
18
+ "css"
19
+ ],
20
+ "author": "raveesh-test",
21
+ "license": "ISC",
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
25
+ }