-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.69 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
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
103
{
"name": "@knocklabs/cli",
"version": "0.1.19",
"description": "Knock CLI",
"author": "@knocklabs",
"bin": {
"knock": "./bin/run.js"
},
"homepage": "https://github.com/knocklabs/knock-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "knocklabs/knock-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^3",
"@oclif/plugin-help": "^6",
"@prantlf/jsonlint": "^14.1.0",
"axios": "^1.7.9",
"date-fns": "^2.30.0",
"enquirer": "^2.4.1",
"fs-extra": "^11.2.0",
"liquidjs": "^10.19.0",
"locale-codes": "^1.3.1",
"lodash": "^4.17.21",
"yup": "^1.4.0"
},
"devDependencies": {
"@oclif/test": "^3",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.10.6",
"@swc/helpers": "^0.5.15",
"@types/chai": "^4",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.10",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"mocha": "^10",
"nock": "^13.5.6",
"oclif": "^4",
"prettier": "2.8.8",
"shx": "^0.3.4",
"sinon": "^16.1.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.5.4"
},
"oclif": {
"bin": "knock",
"dirname": "knock",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"commit": {
"description": "Commit or promote changes."
},
"workflow": {
"description": "Manage notification workflows."
},
"translation": {
"description": "Manage translation files."
},
"layout": {
"description": "Manage email layouts."
}
}
},
"scripts": {
"build": "shx rm -rf dist && swc src -d dist --strip-leading-paths",
"lint": "eslint . --ext .ts --config .eslintrc.json",
"lint.fix": "yarn run lint --fix",
"format": "prettier \"src/**/*.+(ts|js)\" \"test/**/*.+(ts|js)\"",
"format.write": "yarn run format --write",
"format.check": "yarn run format --check",
"type.check": "tsc",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=18.17.0"
},
"bugs": "https://github.com/knocklabs/knock-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}