-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.5 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.5 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
{
"author": "Jeffrey Chupp @semanticart",
"bin": {
"prefab": "./bin/run.js"
},
"dependencies": {
"@oclif/core": "^3.18.2",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^4",
"@prefab-cloud/prefab-cloud-node": "^0.4.5",
"acorn": "^8.10.0",
"acorn-walk": "^8.2.0",
"change-case": "^4.1.2",
"fuzzy": "^0.1.3",
"inquirer-autocomplete-standalone": "^0.8.1",
"mustache": "^4.2.0",
"zod": "^3.22.4"
},
"description": "Prefab CLI",
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/mustache": "^4.2.5",
"@types/node": "^18",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"mocha": "^10",
"msw": "^2.0.6",
"oclif": "^4.0.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsx": "^4.19.3",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/src/codegen/templates",
"/oclif.manifest.json"
],
"homepage": "https://github.com/prefab-cloud/prefab-cli",
"license": "MIT",
"main": "",
"name": "@prefab-cloud/prefab",
"oclif": {
"bin": "prefab",
"dirname": "prefab",
"commands": "./dist/commands",
"plugins": [],
"topicSeparator": " ",
"helpClass": "./dist/help"
},
"repository": "prefab-cloud/prefab-cli",
"scripts": {
"build": "shx rm -rf dist && tsc -b && shx cp -r src/codegen/templates dist/codegen/",
"lint": "eslint . --cache --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"prepare": "yarn build && husky",
"test": "mocha \"test/**/*.test.ts\" --exit",
"test:ci": "mocha --forbid-only \"test/**/*.test.ts\" --exit",
"update-submodule": "git submodule update --remote src/prefab-common",
"version": "yarn build && oclif readme && git add README.md && cat package.json | jq .version | awk '{print \"// NOTE: This file is generated\\nexport default \"$1}' > src/version.ts && git add src/version.ts"
},
"version": "0.5.3",
"bugs": "https://github.com/prefab-cloud/prefab-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"exports": "./lib/index.js",
"type": "module"
}