-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "plugin-devkit",
"version": "1.0.8",
"description": "Devkit plugin for the Shopify CLI",
"author": "Archetype Themes Limited Partnership",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"bin": {
"component": "bin/run.js",
"plugin-devkit": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"repository": "https://github.com/archetype-themes/plugin-devkit.git",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"version": "npm i && oclif readme && git add README.md && git add package-lock.json"
},
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"chokidar": "^4.0.3",
"deepmerge": "^4.3.1",
"fs-extra": "^11.3.0",
"glob": "^11.0.0",
"jsonc": "^2.0.0",
"parse-imports": "^2.2.1",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.1.5",
"@types/chai": "^4",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^18",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9",
"jest-mock": "^29.7.0",
"mocha": "^10",
"oclif": "^4",
"proxyquire": "^2.1.3",
"shx": "^0.3.3",
"sinon": "^19.0.2",
"ts-node": "^10",
"typescript": "^5"
},
"oclif": {
"bin": "shopify",
"dirname": "plugin-devkit",
"commands": "./dist/commands",
"topicSeparator": " "
}
}