makefx 1.6.13 → 2.0.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 CHANGED
@@ -1,34 +1,58 @@
1
1
  {
2
2
  "name": "makefx",
3
- "version": "1.6.13",
4
- "description": "MakeFX CLI for reproducible image, video, and audio Assets in Make Effects.",
5
- "homepage": "https://makefx.app/docs/cli",
6
- "keywords": [
7
- "makefx",
8
- "make-effects",
9
- "mcp",
10
- "media-generation",
11
- "reproducibility",
12
- "cli"
13
- ],
14
- "license": "MIT",
3
+ "version": "2.0.0",
4
+ "description": "Make images, video, and audio on makefx.app from your terminal or coding agent.",
5
+ "license": "Apache-2.0",
15
6
  "type": "module",
16
7
  "repository": {
17
8
  "type": "git",
18
- "url": "git+https://github.com/krasnoperov/inventory.git"
9
+ "url": "git+https://github.com/makefx/cli.git"
10
+ },
11
+ "homepage": "https://makefx.app/docs/cli",
12
+ "bugs": {
13
+ "url": "https://github.com/makefx/cli/issues"
19
14
  },
20
15
  "bin": {
21
- "makefx": "makefx.mjs"
16
+ "makefx": "dist/makefx.js"
22
17
  },
23
18
  "files": [
24
- "makefx.mjs",
25
- "README.md"
19
+ "dist/makefx.js",
20
+ "README.md",
21
+ "CHANGELOG.md",
22
+ "LICENSE",
23
+ "NOTICE",
24
+ "TRADEMARKS.md",
25
+ "THIRD_PARTY_NOTICES.md"
26
26
  ],
27
27
  "engines": {
28
- "node": ">=20"
28
+ "node": ">=22.18"
29
29
  },
30
- "dependencies": {},
31
30
  "publishConfig": {
32
- "access": "public"
31
+ "access": "public",
32
+ "provenance": true
33
+ },
34
+ "scripts": {
35
+ "build": "node scripts/build.mjs",
36
+ "typecheck": "tsc --noEmit",
37
+ "test": "node --test \"src/**/*.test.ts\"",
38
+ "lint:boundary": "node scripts/check-public-boundary.mjs",
39
+ "package:verify": "node scripts/verify-package.mjs",
40
+ "check": "npm run typecheck && npm test && npm run build && npm run lint:boundary && npm run package:verify",
41
+ "prepack": "npm run build && npm run lint:boundary"
42
+ },
43
+ "keywords": [
44
+ "makefx",
45
+ "mcp",
46
+ "media-generation",
47
+ "image",
48
+ "video",
49
+ "audio",
50
+ "cli",
51
+ "agent"
52
+ ],
53
+ "devDependencies": {
54
+ "@types/node": "^22.18.0",
55
+ "esbuild": "^0.28.2",
56
+ "typescript": "^7.0.2"
33
57
  }
34
58
  }