-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.32 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
{
"name": "@dreamonkey/cli-ghostwriter",
"version": "0.2.0",
"repository": "https://github.com/dreamonkey/cli-ghostwriter",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"author": "Dreamonkey Srl <[email protected]> (https://dreamonkey.com)",
"contributors": [
"Paolo Caleffi <[email protected]>"
],
"description": "Execute a command providing a preset of question-answer pairs, the package will fill in the answers for you",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./ --fix --report-unused-disable-directives",
"format": "prettier --write \"**/*.{json,md,graphql,vue,js,ts}\" --ignore-path .gitignore",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"preinstall": "npx only-allow pnpm",
"build": "rimraf dist && tsc --declaration",
"deploy": "pnpm build && pnpm publish --tag latest"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.5"
},
"publishConfig": {
"access": "public"
}
}