@mod-computer/mod 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/package.json CHANGED
@@ -1,73 +1,23 @@
1
1
  {
2
- "name": "@mod-computer/mod",
3
- "repository": {
4
- "type": "git",
5
- "url": "https://github.com/modcomputer/mod-monorepo"
6
- },
7
- "version": "0.1.1",
8
- "license": "MIT",
9
- "bin": {
10
- "mod": "dist/cli.bundle.js"
11
- },
12
- "type": "module",
13
- "engines": {
14
- "node": ">=16"
15
- },
16
- "scripts": {
17
- "build": "tsc && node fix-imports.js && cp -r source/config/release-profiles dist/config/",
18
- "build:bundle": "node build-bundle.js",
19
- "prepublishOnly": "pnpm build:bundle",
20
- "dev": "tsc --watch",
21
- "test": "vitest run",
22
- "package": "node build-for-docs.js"
23
- },
24
- "files": [
25
- "dist/cli.bundle.js",
26
- "dist/package.json"
27
- ],
28
- "dependencies": {
29
- "@ai-sdk/anthropic": "2.0.0-beta.3",
30
- "@ai-sdk/openai": "2.0.0-beta.5",
31
- "@automerge/automerge": "^3.1.2",
32
- "@automerge/automerge-repo": "^2.3.1",
33
- "@automerge/automerge-repo-network-websocket": "^2.3.1",
34
- "@automerge/automerge-repo-storage-nodefs": "^2.3.1",
35
- "@inquirer/prompts": "^8.1.0",
36
- "ai": "5.0.0-beta.11",
37
- "chokidar": "^4.0.3",
38
- "dotenv": "^17.1.0",
39
- "ink": "^6.0.1",
40
- "ink-select-input": "^6.2.0",
41
- "ink-text-input": "^6.0.0",
42
- "meow": "^11.0.0",
43
- "ora": "^9.0.0",
44
- "react": "19.1.0",
45
- "react-dom": "19.1.0",
46
- "zustand": "^5.0.6"
47
- },
48
- "devDependencies": {
49
- "@babel/cli": "^7.21.0",
50
- "@babel/preset-react": "^7.18.6",
51
- "@mod/mod-core": "workspace:*",
52
- "@types/ink": "^2.0.3",
53
- "@types/ink-select-input": "^3.0.5",
54
- "@types/ink-text-input": "^2.0.5",
55
- "@types/meow": "^5.0.0",
56
- "@types/node": "^24.0.10",
57
- "@types/react": "^19.1.8",
58
- "@vdemedes/prettier-config": "^2.0.1",
59
- "chalk": "^5.2.0",
60
- "esbuild": "^0.24.0",
61
- "eslint-config-xo-react": "^0.27.0",
62
- "eslint-plugin-react": "^7.32.2",
63
- "eslint-plugin-react-hooks": "^4.6.0",
64
- "import-jsx": "^5.0.0",
65
- "ink-testing-library": "^3.0.0",
66
- "prettier": "^2.8.7",
67
- "react-test-renderer": "^19.1.0",
68
- "ts-node": "^10.9.2",
69
- "typescript": "^5.8.3",
70
- "vitest": "^1.6.1"
71
- },
72
- "prettier": "@vdemedes/prettier-config"
73
- }
2
+ "name": "@mod-computer/mod",
3
+ "version": "0.1.2",
4
+ "license": "MIT",
5
+ "description": "Mod CLI - Spec-driven development with traceability",
6
+ "bin": {
7
+ "mod": "cli.bundle.js"
8
+ },
9
+ "type": "module",
10
+ "engines": {
11
+ "node": ">=16"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/modcomputer/mod-monorepo"
16
+ },
17
+ "keywords": [
18
+ "cli",
19
+ "mod",
20
+ "traceability",
21
+ "spec-driven"
22
+ ]
23
+ }
package/dist/package.json DELETED
@@ -1,19 +0,0 @@
1
- {
2
- "name": "@mod-computer/cli",
3
- "version": "0.2.6",
4
- "license": "MIT",
5
- "description": "Mod CLI - Spec-driven development with traceability",
6
- "bin": {
7
- "mod": "cli.bundle.js"
8
- },
9
- "type": "module",
10
- "engines": {
11
- "node": ">=16"
12
- },
13
- "keywords": [
14
- "cli",
15
- "mod",
16
- "traceability",
17
- "spec-driven"
18
- ]
19
- }
File without changes