-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.9 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.9 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
102
{
"packageManager": "yarn@4.11.0",
"name": "@reforge-com/cli",
"version": "0.0.14",
"author": "Jeffrey Chupp @semanticart",
"bugs": {
"url": "https://github.com/ReforgeHQ/cli/issues"
},
"homepage": "https://github.com/ReforgeHQ/cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/ReforgeHQ/cli.git"
},
"keywords": [
"oclif"
],
"bin": {
"reforge": "./bin/run.js"
},
"dependencies": {
"@inquirer/prompts": "^5.0.0",
"@oclif/core": "^3.18.2",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^4",
"@reforge-com/node": "^0.0.4",
"acorn": "^8.10.0",
"acorn-walk": "^8.2.0",
"chalk": "^5.4.1",
"comment-json": "^4.2.5",
"common-tags": "^1.8.2",
"fuzzy": "^0.1.3",
"inquirer-autocomplete-standalone": "^0.8.1",
"lodash.camelcase": "^4.3.0",
"mustache": "^4.2.0",
"node-forge": "^1.3.1",
"zod": "^4.1.12"
},
"description": "Reforge CLI",
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/chai": "^4",
"@types/common-tags": "^1.8.4",
"@types/lodash.camelcase": "^4.3.9",
"@types/mocha": "^10",
"@types/mustache": "^4.2.5",
"@types/node": "^18",
"@types/node-forge": "^1.3.14",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-only-error": "^1.0.2",
"mocha": "^10",
"msw": "^2.0.6",
"oclif": "^4.22.29",
"prettier": "^3.6.2",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsx": "^4.19.3",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"license": "MIT",
"main": "",
"oclif": {
"bin": "reforge",
"dirname": "reforge",
"commands": "./dist/commands",
"plugins": [],
"topicSeparator": " ",
"helpClass": "./dist/help",
"stacktrace": false
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint --cache=true \"**/*.{ts,md,json}\"",
"lint:fix": "eslint --cache=true --fix \"**/*.{ts,md,json}\"",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn readme",
"prettier": "prettier -l \"**/*.{ts,md,json}\"",
"prettier:fix": "prettier --write \"**/*.{ts,md,json}\"",
"readme": "yarn build && oclif manifest && oclif readme",
"test": "NODE_ENV=test mocha \"test/**/*.test.ts\" --exit",
"test:ci": "NODE_ENV=test mocha --forbid-only \"test/**/*.test.ts\" --exit",
"test:debug:single": "node --inspect-brk --loader ts-node/esm --no-warnings=ExperimentalWarning ./node_modules/.bin/mocha --exit",
"update-submodule": "git submodule update --remote src/reforge-common"
},
"types": "dist/index.d.ts",
"exports": "./lib/index.js",
"type": "module"
}