-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.92 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "appfactory",
"version": "12.0.1",
"description": "Multi-pipeline application factory - Build mobile apps, dApps, AI agents, Claude plugins, and Base Mini Apps from plain-language descriptions",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:cli": "eslint CLI/",
"lint:dapp": "eslint dapp-factory/",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,yml,yaml}' --ignore-path .prettierignore",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md,yml,yaml}' --ignore-path .prettierignore",
"bootstrap": "npm ci && npm run bootstrap:subprojects",
"bootstrap:subprojects": "cd CLI && npm ci && cd ../dapp-factory && npm ci && cd ../plugin-factory/examples/mcp-server && npm ci",
"type-check": "npm run type-check:cli && npm run type-check:dapp",
"type-check:cli": "cd CLI && npx tsc --noEmit",
"type-check:dapp": "cd dapp-factory && npx tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:cli": "cd CLI && npm test",
"test:dapp": "cd dapp-factory && npm test",
"test:all": "npm run lint && npm run format:check && npm run type-check && npm run test && npm run test:cli && npm run test:dapp",
"validate": "npm run test",
"prepare": "husky || true",
"precommit": "lint-staged",
"ci": "npm run lint && npm run format:check && npm run type-check",
"deps:check": "node scripts/check-dependencies.js",
"deps:audit": "npm audit && cd CLI && npm audit && cd ../dapp-factory && npm audit && cd ../plugin-factory/examples/mcp-server && npm audit",
"deps:outdated": "npm outdated && cd CLI && npm outdated && cd ../dapp-factory && npm outdated && cd ../plugin-factory/examples/mcp-server && npm outdated",
"maintain": "npm run lint && npm run type-check && npm run deps:check",
"maintain:full": "npm run maintain && npm run deps:audit",
"clean": "node -e \"const r=require('fs');['node_modules','CLI/node_modules','CLI/dist','dapp-factory/node_modules','dapp-factory/dist'].forEach(d=>{try{r.rmSync(d,{recursive:true,force:true})}catch{}})\"",
"build:cli": "cd CLI && npm run build",
"build:dapp": "cd dapp-factory && npm run build",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"test:local-run-proof": "node --test scripts/local-run-proof/__tests__/verify.test.mjs",
"demo:render": "node scripts/render-demo-video.mjs",
"demo:studio": "cd demo-video && npm run studio"
},
"keywords": [
"app-factory",
"claude",
"ai",
"code-generation",
"mobile-apps",
"dapps",
"agents",
"plugins",
"miniapps"
],
"author": "MeltedMindz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MeltedMindz/AppFactory.git"
},
"bugs": {
"url": "https://github.com/MeltedMindz/AppFactory/issues"
},
"homepage": "https://github.com/MeltedMindz/AppFactory#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"standard-version": "^9.5.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"workspaces": [
"CLI",
"core",
"dapp-factory"
]
}