@prozilla-os/calculator 1.1.4 → 1.1.6
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 +5 -5
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
</p>
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
-
## About
|
|
14
|
+
## About
|
|
15
15
|
|
|
16
16
|
`@prozilla-os/calculator` is a ProzillaOS application for making basic calculations.
|
|
17
17
|
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
`@prozilla-os/core` is required to run this application.
|
|
21
21
|
|
|
22
22
|
```sh
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
npm install @prozilla-os/core @prozilla-os/calculator
|
|
24
|
+
yarn add @prozilla-os/core @prozilla-os/calculator
|
|
25
|
+
pnpm add @prozilla-os/core @prozilla-os/calculator
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Usage
|
|
@@ -67,4 +67,4 @@ function App() {
|
|
|
67
67
|
[github]: https://github.com/prozilla-os/ProzillaOS/tree/main/packages/apps/calculator
|
|
68
68
|
[npm]: https://www.npmjs.com/package/@prozilla-os/calculator
|
|
69
69
|
[discord]: https://discord.gg/JwbyQP4tdz
|
|
70
|
-
[ko-fi]: https://ko-fi.com/prozilla
|
|
70
|
+
[ko-fi]: https://ko-fi.com/prozilla
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prozilla-os/calculator",
|
|
3
3
|
"description": "A ProzillaOS application for making basic calculations.",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.6",
|
|
5
5
|
"homepage": "https://os.prozilla.dev/calculator",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Prozilla",
|
|
8
8
|
"email": "business@prozilla.dev",
|
|
9
9
|
"url": "https://prozilla.dev/"
|
|
10
10
|
},
|
|
11
|
+
"funding": "https://ko-fi.com/prozilla",
|
|
11
12
|
"type": "module",
|
|
12
13
|
"main": "dist/main.js",
|
|
13
14
|
"types": "dist/main.d.ts",
|
|
@@ -19,17 +20,17 @@
|
|
|
19
20
|
"license": "MIT",
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"react": "^18.3.1",
|
|
22
|
-
"@prozilla-os/core": "1.
|
|
23
|
+
"@prozilla-os/core": "1.3.1"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"@types/node": "^20.14.5",
|
|
26
27
|
"@types/react": "^18.3.3",
|
|
27
28
|
"@vitejs/plugin-react-swc": "^3.7.0",
|
|
28
29
|
"typescript": "^5.4.5",
|
|
29
|
-
"vite": "^5.
|
|
30
|
+
"vite": "^5.4.8",
|
|
30
31
|
"vite-plugin-dts": "^3.9.1",
|
|
31
32
|
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
32
|
-
"@prozilla-os/
|
|
33
|
+
"@prozilla-os/dev-tools": "1.0.2"
|
|
33
34
|
},
|
|
34
35
|
"files": [
|
|
35
36
|
"dist"
|