darkprint 0.1.0

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/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "darkprint",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "The DarkPrint registry from your terminal and from an agent session: clone, validate, export and import blueprints, report runs, serve the registry over MCP on stdio, and carry the blueprint-writing skill.",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "darkprint": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "skill"
13
+ ],
14
+ "scripts": {
15
+ "build": "node ../cli/build.mjs && rm -rf skill && mkdir -p skill && cp -R ../../skills/darkprint skill/darkprint",
16
+ "prepack": "npm run build"
17
+ },
18
+ "engines": {
19
+ "node": ">=20"
20
+ }
21
+ }