nuviq 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
|
+
# nuviq
|
|
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 nuviq
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```js
|
|
16
|
+
import { hello } from "nuviq";
|
|
17
|
+
console.log(hello()); // "nuviq is coming soon 🚀"
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* nuviq - 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 "nuviq is coming soon 🚀";
|
|
15
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nuviq",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A fast, modern Setu Application 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/nuviq.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/senapati484/nuviq/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/senapati484/nuviq#readme"
|
|
42
|
+
}
|