-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.76 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.76 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
{
"name": "@ali-dev11/devforge",
"version": "0.4.3",
"description": "Production-focused AI-native project scaffolding CLI for JavaScript and TypeScript teams.",
"license": "MIT",
"author": "Ali-dev11",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://ali-dev11.github.io/devforge/",
"repository": {
"type": "git",
"url": "git+https://github.com/Ali-dev11/devforge.git"
},
"bugs": {
"url": "https://github.com/Ali-dev11/devforge/issues"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"create-devforge": "dist/bin/create-devforge.js",
"devforge": "dist/bin/devforge.js"
},
"preferGlobal": true,
"sideEffects": false,
"keywords": [
"cli",
"scaffolding",
"project-generator",
"typescript",
"javascript",
"ai",
"devforge"
],
"files": [
"dist",
"!dist/runtime-matrix.*",
"!dist/bin/runtime-matrix.*"
],
"scripts": {
"prepare:metadata": "node scripts/sync-package-metadata.mjs",
"docs:changelog": "node scripts/changelog.mjs --docs docs/changelog.md",
"clean": "node --eval \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"dev": "tsx src/bin/devforge.ts",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test test/**/*.test.ts",
"check": "npm run lint && npm run typecheck && npm run test && npm run build",
"runtime:matrix": "npm run build && node dist/bin/runtime-matrix.js",
"release:check": "npm run check && npm pack --dry-run --ignore-scripts --cache /tmp/devforge-npm-cache",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"preversion": "npm run release:check",
"prebuild": "npm run prepare:metadata",
"pretypecheck": "npm run prepare:metadata",
"version": "npm run prepare:metadata && git add src/generated/package-metadata.ts",
"prepack": "npm run check",
"smoke": "npm run build && node --eval \"require('node:fs').rmSync('/tmp/devforge-smoke', { recursive: true, force: true })\" && node dist/bin/devforge.js init --yes --skip-install --output /tmp/devforge-smoke"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@types/node": "^25.5.0",
"@types/prompts": "^2.4.9",
"eslint": "^8.57.1",
"globals": "^17.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}