archondev 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/README.md +75 -0
- package/dist/chunk-R6IMTNKV.js +389 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7490 -0
- package/dist/parser-D6PBQUJH.js +6 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "archondev",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Local-first AI-powered development governance system",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"archon": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsup src/cli/index.ts --format esm --dts --clean",
|
|
14
|
+
"dev": "tsx src/cli/index.ts",
|
|
15
|
+
"typecheck": "tsc --noEmit",
|
|
16
|
+
"test": "vitest run",
|
|
17
|
+
"test:watch": "vitest",
|
|
18
|
+
"lint": "eslint src --ext .ts",
|
|
19
|
+
"prepublishOnly": "npm run build && npm run test"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"ai",
|
|
23
|
+
"governance",
|
|
24
|
+
"architecture",
|
|
25
|
+
"autonomous",
|
|
26
|
+
"development",
|
|
27
|
+
"cli",
|
|
28
|
+
"cursor",
|
|
29
|
+
"copilot",
|
|
30
|
+
"claude",
|
|
31
|
+
"llm"
|
|
32
|
+
],
|
|
33
|
+
"author": "Jumping Ahead Corp. <techsupport@JumpingAhead.com>",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"homepage": "https://archondev.io",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/1davidlevine/archondev.git"
|
|
39
|
+
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/1davidlevine/archondev/issues"
|
|
42
|
+
},
|
|
43
|
+
"type": "module",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@anthropic-ai/sdk": "^0.71.2",
|
|
46
|
+
"@supabase/supabase-js": "^2.90.1",
|
|
47
|
+
"@types/node": "^25.0.9",
|
|
48
|
+
"chalk": "^5.6.2",
|
|
49
|
+
"commander": "^14.0.2",
|
|
50
|
+
"dotenv": "^17.2.3",
|
|
51
|
+
"gray-matter": "^4.0.3",
|
|
52
|
+
"minimatch": "^10.1.1",
|
|
53
|
+
"open": "^11.0.0",
|
|
54
|
+
"ora": "^9.0.0",
|
|
55
|
+
"stripe": "^20.2.0",
|
|
56
|
+
"tsx": "^4.21.0",
|
|
57
|
+
"typescript": "^5.9.3",
|
|
58
|
+
"vitest": "^4.0.17",
|
|
59
|
+
"yaml": "^2.8.2"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@types/js-yaml": "^4.0.9",
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^8.53.0",
|
|
64
|
+
"@typescript-eslint/parser": "^8.53.0",
|
|
65
|
+
"eslint": "^9.39.2",
|
|
66
|
+
"tsup": "^8.5.1"
|
|
67
|
+
}
|
|
68
|
+
}
|