|
1 | 1 | {
|
2 | 2 | "name": "create-formidable",
|
3 |
| - "version": "0.0.13", |
| 3 | + "version": "0.0.14", |
4 | 4 | "description": "The Formidable Framework Installer",
|
5 | 5 | "author": "Donald Pakkies @donaldp",
|
6 | 6 | "bin": {
|
7 |
| - "create-formidable": "./bin/run" |
| 7 | + "create-formidable": "./bin/run.js" |
8 | 8 | },
|
9 | 9 | "homepage": "https://github.com/formidablejs/create-formidable",
|
10 | 10 | "license": "MIT",
|
11 | 11 | "main": "dist/index.js",
|
12 | 12 | "repository": "formidablejs/create-formidable",
|
13 | 13 | "files": [
|
14 |
| - "/bin", |
15 |
| - "/dist", |
16 |
| - "/npm-shrinkwrap.json", |
17 |
| - "/oclif.manifest.json" |
| 14 | + "./bin", |
| 15 | + "./dist", |
| 16 | + "./oclif.manifest.json" |
18 | 17 | ],
|
19 | 18 | "dependencies": {
|
20 |
| - "@formidablejs/installer": "^0.9.12", |
21 |
| - "@inquirer/prompts": "^1.2.1", |
22 |
| - "@oclif/core": "^2", |
23 |
| - "@oclif/plugin-help": "^5", |
24 |
| - "@oclif/plugin-plugins": "^2.4.7", |
25 |
| - "@oclif/plugin-warn-if-update-available": "^2.0.37" |
| 19 | + "@formidablejs/installer": "^0.9.13", |
| 20 | + "@inquirer/prompts": "^7.4.1", |
| 21 | + "@oclif/core": "^4", |
| 22 | + "@oclif/plugin-help": "^6", |
| 23 | + "@oclif/plugin-plugins": "^5" |
26 | 24 | },
|
27 | 25 | "devDependencies": {
|
28 |
| - "@oclif/test": "^2.3.20", |
| 26 | + "@eslint/compat": "^1", |
| 27 | + "@oclif/prettier-config": "^0.2.1", |
| 28 | + "@oclif/test": "^4", |
29 | 29 | "@types/chai": "^4",
|
30 |
| - "@types/mocha": "^9.0.0", |
31 |
| - "@types/mute-stream": "^0.0.1", |
32 |
| - "@types/node": "^16.18.31", |
| 30 | + "@types/mocha": "^10", |
| 31 | + "@types/node": "^18", |
33 | 32 | "chai": "^4",
|
34 |
| - "eslint": "^7.32.0", |
35 |
| - "eslint-config-oclif": "^4", |
36 |
| - "eslint-config-oclif-typescript": "^1.0.3", |
37 |
| - "mocha": "^9", |
38 |
| - "oclif": "^3", |
| 33 | + "eslint": "^9", |
| 34 | + "eslint-config-oclif": "^6", |
| 35 | + "eslint-config-prettier": "^10", |
| 36 | + "mocha": "^10", |
| 37 | + "oclif": "^4", |
39 | 38 | "shx": "^0.3.3",
|
40 |
| - "ts-node": "^10.9.1", |
41 |
| - "tslib": "^2.5.2", |
42 |
| - "typescript": "^4.9.5" |
| 39 | + "ts-node": "^10", |
| 40 | + "typescript": "^5" |
43 | 41 | },
|
44 | 42 | "oclif": {
|
45 | 43 | "bin": "create-formidable",
|
46 | 44 | "dirname": "create-formidable",
|
47 |
| - "default": ".", |
48 |
| - "commands": "./dist/commands", |
| 45 | + "commands": { |
| 46 | + "strategy": "single", |
| 47 | + "target": "./dist/index.js" |
| 48 | + }, |
49 | 49 | "plugins": [
|
50 | 50 | "@oclif/plugin-help",
|
51 |
| - "@oclif/plugin-warn-if-update-available" |
| 51 | + "@oclif/plugin-plugins" |
52 | 52 | ],
|
53 |
| - "warn-if-update-available": { |
54 |
| - "timeoutInDays": 1, |
55 |
| - "message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>." |
56 |
| - } |
| 53 | + "topicSeparator": " " |
57 | 54 | },
|
58 | 55 | "scripts": {
|
59 | 56 | "build": "shx rm -rf dist && tsc -b",
|
60 |
| - "lint": "eslint . --ext .ts --config .eslintrc", |
| 57 | + "lint": "eslint", |
61 | 58 | "postpack": "shx rm -f oclif.manifest.json",
|
62 |
| - "posttest": "yarn lint", |
63 |
| - "prepack": "yarn build && oclif manifest && oclif readme", |
| 59 | + "posttest": "npm run lint", |
| 60 | + "prepack": "oclif manifest && oclif readme", |
64 | 61 | "test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
65 | 62 | "version": "oclif readme && git add README.md"
|
66 | 63 | },
|
67 | 64 | "engines": {
|
68 |
| - "node": ">=12.0.0" |
| 65 | + "node": ">=20.0.0" |
69 | 66 | },
|
70 | 67 | "bugs": "https://github.com/formidablejs/create-formidable/issues",
|
71 | 68 | "keywords": [
|
72 |
| - "oclif" |
| 69 | + "formidable", |
| 70 | + "full-stack" |
73 | 71 | ],
|
74 | 72 | "types": "dist/index.d.ts"
|
75 | 73 | }
|
0 commit comments