@nanoforge-dev/graphics-2d 1.0.0 → 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 +13 -11
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<a href="https://github.com/NanoForge-dev/Engine/actions"><img src="https://github.com/NanoForge-dev/Engine/actions/workflows/tests.yml/badge.svg" alt="Tests status" /></a>
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
<br />
|
|
3
|
+
<p>
|
|
4
|
+
<a href="https://github.com/NanoForge-dev"><img src="https://github.com/NanoForge-dev/Engine/blob/main/.github/logo.png" width="546" alt="NanoForge" /></a>
|
|
5
|
+
</p>
|
|
6
|
+
<br />
|
|
7
|
+
<p>
|
|
8
|
+
<a href="https://www.npmjs.com/package/@nanoforge-dev/graphics-2d"><img src="https://img.shields.io/npm/v/@nanoforge-dev/graphics-2d.svg?maxAge=3600" alt="npm version" /></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/@nanoforge-dev/graphics-2d"><img src="https://img.shields.io/npm/dt/@nanoforge-dev/graphics-2d.svg?maxAge=3600" alt="npm downloads" /></a>
|
|
10
|
+
<a href="https://github.com/NanoForge-dev/Engine/actions/workflows/tests.yml"><img src="https://github.com/NanoForge-dev/Engine/actions/workflows/tests.yml/badge.svg" alt="Tests status" /></a>
|
|
11
|
+
<a href="https://github.com/NanoForge-dev/Engine/actions/workflows/push-docs.yml"><img src="https://github.com/NanoForge-dev/Engine/actions/workflows/push-docs.yml/badge.svg" alt="Documentation status" /></a>
|
|
12
|
+
<a href="https://github.com/NanoForge-dev/Engine/commits/main/packages/graphics-2d"><img src="https://img.shields.io/github/last-commit/NanoForge-dev/Engine.svg?logo=github&logoColor=ffffff&path=packages%2Fgraphics-2d" alt="Last commit" /></a>
|
|
13
|
+
<a href="https://github.com/NanoForge-dev/Engine/graphs/contributors"><img src="https://img.shields.io/github/contributors/NanoForge-dev/Engine.svg?maxAge=3600&logo=github&logoColor=fff&color=00c7be" alt="Contributors" /></a>
|
|
14
|
+
</p>
|
|
13
15
|
</div>
|
|
14
16
|
|
|
15
17
|
## About
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@nanoforge-dev/graphics-2d",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"description": "NanoForge Engine - Graphics-2d",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"nanoforge",
|
|
@@ -47,29 +47,29 @@
|
|
|
47
47
|
},
|
|
48
48
|
"funding": "https://github.com/NanoForge-dev/Engine?sponsor",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"konva": "^10.0
|
|
51
|
-
"@nanoforge-dev/common": "
|
|
50
|
+
"konva": "^10.2.0",
|
|
51
|
+
"@nanoforge-dev/common": "1.0.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@favware/cliff-jumper": "^6.0.0",
|
|
55
|
-
"@trivago/prettier-plugin-sort-imports": "^6.0.
|
|
56
|
-
"eslint": "^
|
|
57
|
-
"prettier": "^3.
|
|
55
|
+
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
56
|
+
"eslint": "^10.0.0",
|
|
57
|
+
"prettier": "^3.8.1",
|
|
58
58
|
"tsup": "^8.5.1",
|
|
59
59
|
"typescript": "^5.9.3",
|
|
60
|
-
"vitest": "^4.0.
|
|
61
|
-
"@nanoforge-dev/utils-
|
|
62
|
-
"@nanoforge-dev/utils-
|
|
60
|
+
"vitest": "^4.0.18",
|
|
61
|
+
"@nanoforge-dev/utils-eslint-config": "1.0.2",
|
|
62
|
+
"@nanoforge-dev/utils-prettier-config": "1.0.2"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|
|
65
|
-
"node": "
|
|
65
|
+
"node": "25"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
70
|
"lint-staged": {
|
|
71
|
-
"
|
|
72
|
-
"prettier --write"
|
|
71
|
+
"**": [
|
|
72
|
+
"prettier --ignore-unknown --write"
|
|
73
73
|
],
|
|
74
74
|
"src/**/*.ts": [
|
|
75
75
|
"eslint --fix"
|