@genart-dev/core 0.1.1 → 0.1.2
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 +4 -0
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -178,6 +178,10 @@ All types and functions from `@genart-dev/format` are re-exported: `parseGenart`
|
|
|
178
178
|
| [`@genart-dev/format`](https://github.com/genart-dev/format) | File format types, parsers, presets (dependency) |
|
|
179
179
|
| [`@genart-dev/mcp-server`](https://github.com/genart-dev/mcp-server) | 33-tool MCP server + CLI (depends on core) |
|
|
180
180
|
|
|
181
|
+
## Support
|
|
182
|
+
|
|
183
|
+
Questions, bugs, or feedback — [support@genart.dev](mailto:support@genart.dev) or [open an issue](https://github.com/genart-dev/core/issues).
|
|
184
|
+
|
|
181
185
|
## License
|
|
182
186
|
|
|
183
187
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genart-dev/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Renderer adapters, skill registry, and runtime interfaces for genart.dev",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -22,6 +22,11 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"license": "MIT",
|
|
25
|
+
"author": {
|
|
26
|
+
"name": "genart.dev",
|
|
27
|
+
"email": "support@genart.dev",
|
|
28
|
+
"url": "https://genart.dev"
|
|
29
|
+
},
|
|
25
30
|
"repository": {
|
|
26
31
|
"type": "git",
|
|
27
32
|
"url": "git+https://github.com/genart-dev/core.git"
|
|
@@ -40,13 +45,6 @@
|
|
|
40
45
|
"publishConfig": {
|
|
41
46
|
"access": "public"
|
|
42
47
|
},
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build": "tsup",
|
|
45
|
-
"test": "vitest run",
|
|
46
|
-
"test:watch": "vitest",
|
|
47
|
-
"clean": "rm -rf dist",
|
|
48
|
-
"prepublishOnly": "pnpm build"
|
|
49
|
-
},
|
|
50
48
|
"dependencies": {
|
|
51
49
|
"@genart-dev/format": "^0.1.0"
|
|
52
50
|
},
|
|
@@ -54,5 +52,11 @@
|
|
|
54
52
|
"tsup": "^8.3.6",
|
|
55
53
|
"typescript": "^5.7.3",
|
|
56
54
|
"vitest": "^3.0.5"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsup",
|
|
58
|
+
"test": "vitest run",
|
|
59
|
+
"test:watch": "vitest",
|
|
60
|
+
"clean": "rm -rf dist"
|
|
57
61
|
}
|
|
58
|
-
}
|
|
62
|
+
}
|