-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 KB
/
package.json
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
{
"name": "@cristiand391/sf-plugin-fzf-cmp",
"version": "0.3.0",
"description": "Fuzzy completion for the Salesforce CLI",
"author": {
"name": "Cristian Dominguez",
"url": "https://github.com/cristiand391"
},
"homepage": "https://github.com/cristiand391/sf-plugin-fzf-cmp",
"license": "MIT",
"main": "lib/index.js",
"repository": "cristiand391/sf-plugin-fzf-cmp",
"files": [
"/lib",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^4.0.17",
"@salesforce/core": "^8.4.0",
"@salesforce/source-deploy-retrieve": "^12.5.0",
"ansis": "^3.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"oclif": {
"commands": "./lib/commands",
"hooks": {
"plugins:postinstall": "./lib/hooks/refresh-cache.js",
"plugins:postuninstall": "./lib/hooks/refresh-cache.js"
}
},
"prettier": {
"singleQuote": true
},
"scripts": {
"build": "rm -rf lib && tsc -p .",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"+(src)/**/*.+(ts|json)\"",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest"
},
"engines": {
"node": ">=18"
},
"bugs": "https://github.com/cristiand391/sf-plugin-fzf-cmp/issues",
"keywords": [
"force",
"salesforce",
"sfdx",
"salesforcedx",
"sfdx-plugin",
"sf-plugin",
"sf-autocomplete",
"sf"
]
}