agentful 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,51 @@
1
+ {
2
+ "name": "agentful",
3
+ "version": "0.1.0",
4
+ "description": "Agentful in your terminal \u2014 local development with push-to-cloud previews",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://agentful.dev",
7
+ "bin": {
8
+ "agentful": "./dist/index.cjs"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "assets",
13
+ "README.md",
14
+ "LICENSE",
15
+ "NOTICE",
16
+ "THIRD-PARTY-LICENSES.txt"
17
+ ],
18
+ "engines": {
19
+ "node": ">=20"
20
+ },
21
+ "scripts": {
22
+ "build": "npm run sync-theme && tsup",
23
+ "typecheck": "tsc --noEmit",
24
+ "dev": "tsx src/index.ts",
25
+ "sync-theme": "cp src/branding/agentful-theme.json ../frontend/public/cli/theme.json",
26
+ "test": "node --import tsx --test \"src/**/*.test.ts\""
27
+ },
28
+ "devDependencies": {
29
+ "@types/node": "^20.14.0",
30
+ "commander": "^12.1.0",
31
+ "fflate": "^0.8.2",
32
+ "ignore": "^5.3.1",
33
+ "tsup": "^8.1.0",
34
+ "tsx": "^4.16.0",
35
+ "typescript": "^5.5.0"
36
+ },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/limoncello/mainmvp.git",
40
+ "directory": "cli"
41
+ },
42
+ "keywords": [
43
+ "agentful",
44
+ "cli",
45
+ "deploy",
46
+ "preview",
47
+ "ai",
48
+ "coding-agent",
49
+ "tui"
50
+ ]
51
+ }