-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2 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
63
64
65
66
67
68
{
"name": "@thebeyondgroup/shopkeeper",
"version": "1.0.2",
"description": "A CLI to manage settings and deployments for Shopify themes",
"author": "Jeffrey Guenther @jeffreyguenther",
"bin": {
"shopkeeper": "./bin/run.js"
},
"homepage": "https://github.com/TheBeyondGroup/shopkeeper",
"license": "MIT",
"type": "module",
"repository": "TheBeyondGroup/shopkeeper",
"files": ["/bin", "/dist", "/npm-shrinkwrap.json", "/oclif.manifest.json"],
"dependencies": {
"@oclif/core": "3.19.6",
"@oclif/plugin-help": "6.0.1",
"@shopify/cli": "3.57.1",
"@shopify/cli-kit": "3.57.1",
"@shopify/theme": "3.57.1",
"fs-extra": "^11.1.0"
},
"devDependencies": {
"@oclif/test": "3.2.1",
"@types/chai": "^4",
"@types/fs-extra": "^11.0.1",
"@types/node": "18.19.3",
"eslint": "^8.48.0",
"oclif": "4.0.2",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "5.2.2",
"vitest": "^1.3.1"
},
"oclif": {
"bin": "shopkeeper",
"dirname": "shopkeeper",
"commands": "./dist/commands",
"plugins": ["@oclif/plugin-help"],
"repositoryPrefix": "<%- repo %>/tree/main/src/<%- commandPath %>",
"topicSeparator": " "
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"dev": "pnpm build && pnpm exec -- shopify",
"lint": "eslint . --ext .ts --config .eslintrc",
"postinstall": "node bin/patch-cli.js",
"posttest": "pnpm lint",
"postpublish": "npm publish --ignore-scripts --@thebeyondgroup:registry='https://registry.npmjs.org'",
"prepack": "pnpm build && pnpm oclif manifest && ./bin/generate-readme.sh",
"test": "vitest --run"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "all",
"semi": false,
"printWidth": 120
},
"engines": {
"node": ">=18.12.0"
},
"bugs": "https://github.com/TheBeyondGroup/shopkeeper/issues",
"keywords": ["oclif"],
"types": "dist/index.d.ts"
}