UNPKG

2.12 kBJSONView Raw
1{
2 "name": "@oclif/plugin-not-found",
3 "description": "\"did you mean\" for oclif",
4 "version": "3.2.4",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-not-found/issues",
7 "dependencies": {
8 "@inquirer/confirm": "^3.1.9",
9 "@oclif/core": "^4",
10 "ansis": "^3.2.0",
11 "fast-levenshtein": "^3.0.0"
12 },
13 "devDependencies": {
14 "@commitlint/config-conventional": "^19",
15 "@oclif/plugin-commands": "^3.3.3",
16 "@oclif/plugin-help": "^6",
17 "@oclif/prettier-config": "^0.2.1",
18 "@oclif/test": "^4",
19 "@types/chai": "^4.3.11",
20 "@types/fast-levenshtein": "^0.0.4",
21 "@types/mocha": "^10.0.6",
22 "@types/node": "^18",
23 "@types/sinon": "^17.0.3",
24 "chai": "^4.4.1",
25 "commitlint": "^19",
26 "eslint": "^8.57.0",
27 "eslint-config-oclif": "^5.2.0",
28 "eslint-config-oclif-typescript": "^3.1.7",
29 "eslint-config-prettier": "^9.1.0",
30 "husky": "^9",
31 "lint-staged": "^15",
32 "mocha": "^10.4.0",
33 "oclif": "^4.12.0",
34 "prettier": "^3.3.1",
35 "shx": "^0.3.4",
36 "sinon": "^18.0.0",
37 "ts-node": "^10.9.2",
38 "typescript": "^5.4.5"
39 },
40 "engines": {
41 "node": ">=18.0.0"
42 },
43 "exports": "./lib/index.js",
44 "files": [
45 "oclif.manifest.json",
46 "/lib"
47 ],
48 "homepage": "https://github.com/oclif/plugin-not-found",
49 "keywords": [
50 "oclif-plugin"
51 ],
52 "license": "MIT",
53 "oclif": {
54 "hooks": {
55 "command_not_found": "./lib"
56 },
57 "devPlugins": [
58 "@oclif/plugin-help",
59 "@oclif/plugin-commands"
60 ]
61 },
62 "repository": "oclif/plugin-not-found",
63 "scripts": {
64 "build": "shx rm -rf lib && tsc",
65 "clean": "shx rm -f oclif.manifest.json",
66 "compile": "tsc",
67 "lint": "eslint . --ext .ts",
68 "postpack": "yarn run clean",
69 "posttest": "yarn lint",
70 "prepack": "yarn build && oclif manifest && oclif readme",
71 "prepare": "husky && yarn build",
72 "pretest": "yarn build --noEmit && tsc -p test --noEmit",
73 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
74 "version": "oclif readme && git add README.md"
75 },
76 "type": "module",
77 "types": "lib/index.d.ts"
78}