-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "create-answer-plugin",
"version": "2.0.0",
"description": "",
"type": "module",
"main": "index.js",
"bin": {
"answer-plugin": "bin/index.js",
"create-answer-plugin": "bin/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx bin/index.ts",
"test": "tsx bin/index.ts",
"verify": "tsx scripts/verify-plugin.ts",
"verify:all": "tsx scripts/verify-all-plugins.ts",
"create:all": "tsx scripts/create-all-plugin-types.ts",
"release": "release-it"
},
"dependencies": {
"humps": "^2.0.1",
"js-yaml": "^4.1.0",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"tsx": "^4.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/humps": "^2.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.34",
"release-it": "^17.4.0",
"typescript": "^5.3.3"
},
"author": "robin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/answerdev/create-answer-plugin.git"
},
"keywords": [
"answer",
"plugin"
],
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}