@pennyfarthing/core 10.0.0 → 10.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/LICENSE +14 -0
- package/package.json +11 -11
package/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Copyright (c) 2026 1898 & Co.
|
|
2
|
+
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are proprietary
|
|
6
|
+
and confidential. No part of this Software may be reproduced, distributed, or
|
|
7
|
+
transmitted in any form or by any means, including photocopying, recording, or
|
|
8
|
+
other electronic or mechanical methods, without the prior written permission of
|
|
9
|
+
the copyright holder.
|
|
10
|
+
|
|
11
|
+
Unauthorized copying, modification, distribution, or use of this Software, via
|
|
12
|
+
any medium, is strictly prohibited.
|
|
13
|
+
|
|
14
|
+
For licensing inquiries, contact: 1898 & Co.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pennyfarthing/core",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.1",
|
|
4
4
|
"description": "Claude Code agent framework with TDD workflow and persona system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -32,21 +32,14 @@
|
|
|
32
32
|
"dist/",
|
|
33
33
|
"bin/"
|
|
34
34
|
],
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "tsc",
|
|
37
|
-
"dev": "tsc --watch",
|
|
38
|
-
"test": "node --test dist/**/*.test.js",
|
|
39
|
-
"lint": "eslint src/",
|
|
40
|
-
"clean": "rm -rf dist/"
|
|
41
|
-
},
|
|
42
35
|
"dependencies": {
|
|
43
|
-
"@pennyfarthing/shared": "workspace:*",
|
|
44
36
|
"chalk": "^5.3.0",
|
|
45
37
|
"commander": "^12.1.0",
|
|
46
38
|
"fs-extra": "^11.2.0",
|
|
47
39
|
"inquirer": "^9.2.12",
|
|
48
40
|
"open": "^11.0.0",
|
|
49
|
-
"yaml": "^2.3.4"
|
|
41
|
+
"yaml": "^2.3.4",
|
|
42
|
+
"@pennyfarthing/shared": "^10.0.1"
|
|
50
43
|
},
|
|
51
44
|
"devDependencies": {
|
|
52
45
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -59,5 +52,12 @@
|
|
|
59
52
|
},
|
|
60
53
|
"engines": {
|
|
61
54
|
"node": ">=18.0.0"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsc",
|
|
58
|
+
"dev": "tsc --watch",
|
|
59
|
+
"test": "node --test dist/**/*.test.js",
|
|
60
|
+
"lint": "eslint src/",
|
|
61
|
+
"clean": "rm -rf dist/"
|
|
62
62
|
}
|
|
63
|
-
}
|
|
63
|
+
}
|