frostline 0.0.1
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 +22 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +15 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# frostline
|
|
2
|
+
|
|
3
|
+
> A fast, modern JavaScript utility library.
|
|
4
|
+
|
|
5
|
+
⚠️ **This package is under active development. Full release coming soon.**
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install frostline
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```js
|
|
16
|
+
import { hello } from "frostline";
|
|
17
|
+
console.log(hello()); // "frostline is coming soon 🚀"
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* frostline - v0.0.1
|
|
3
|
+
* A fast, modern JavaScript utility library.
|
|
4
|
+
*
|
|
5
|
+
* This is a placeholder release to reserve the package name.
|
|
6
|
+
* Full implementation coming soon.
|
|
7
|
+
*/
|
|
8
|
+
export declare const VERSION = "0.0.1";
|
|
9
|
+
export declare function hello(): string;
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* frostline - v0.0.1
|
|
4
|
+
* A fast, modern JavaScript utility library.
|
|
5
|
+
*
|
|
6
|
+
* This is a placeholder release to reserve the package name.
|
|
7
|
+
* Full implementation coming soon.
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.VERSION = void 0;
|
|
11
|
+
exports.hello = hello;
|
|
12
|
+
exports.VERSION = "0.0.1";
|
|
13
|
+
function hello() {
|
|
14
|
+
return "frostline is coming soon 🚀";
|
|
15
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "frostline",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A fast, modern JavaScript utility library.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"utility",
|
|
17
|
+
"javascript",
|
|
18
|
+
"react",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
21
|
+
"author": "senapati484 <sayansenapati2544@gmail.com>",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"typescript": "^5.0.0"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"react": ">=18.0.0"
|
|
28
|
+
},
|
|
29
|
+
"peerDependenciesMeta": {
|
|
30
|
+
"react": {
|
|
31
|
+
"optional": true
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/senapati484/frostline.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/senapati484/frostline/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/senapati484/frostline#readme"
|
|
42
|
+
}
|