numora 0.0.2 → 1.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 +3 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# numora
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/numora)
|
|
4
|
+
|
|
3
5
|
A lightweight, framework-agnostic numeric input library for handling currency and decimal inputs in **financial/DeFi** applications. Built with TypeScript with **zero-dependencies**.
|
|
4
6
|
|
|
5
7
|
## Features
|
|
@@ -56,7 +58,7 @@ Numora is also available for popular frameworks:
|
|
|
56
58
|
|
|
57
59
|
- React: `numora-react`
|
|
58
60
|
- Vue: `numora-vue`
|
|
59
|
-
- Svelte: `numora
|
|
61
|
+
- Svelte: `numora`
|
|
60
62
|
|
|
61
63
|
## License
|
|
62
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "numora",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Framework-agnostic headless finance input library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,12 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "https://github.com/Sharqiewicz/numora
|
|
19
|
-
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "vite build && tsc --emitDeclarationOnly",
|
|
22
|
-
"test": "vitest run",
|
|
23
|
-
"dev": "vite build --watch"
|
|
18
|
+
"url": "https://github.com/Sharqiewicz/numora"
|
|
24
19
|
},
|
|
25
20
|
"keywords": [
|
|
26
21
|
"numeric input",
|
|
@@ -59,5 +54,10 @@
|
|
|
59
54
|
"typescript": "^5.8.2",
|
|
60
55
|
"vite": "^6.2.2",
|
|
61
56
|
"vitest": "^3.0.9"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "vite build && tsc --emitDeclarationOnly",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"dev": "vite build --watch"
|
|
62
62
|
}
|
|
63
|
-
}
|
|
63
|
+
}
|