-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 913 Bytes
/
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
{
"name": "@preevy/plugin-github",
"version": "0.0.64",
"description": "Preevy plugin for GitHub",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"files": [
"dist"
],
"license": "Apache-2.0",
"dependencies": {
"@oclif/core": "^3.15.1",
"@preevy/cli-common": "0.0.64",
"@preevy/core": "0.0.64",
"lodash-es": "^4.17.21",
"nunjucks": "^3.2.4",
"octokit": "^3.1.1"
},
"devDependencies": {
"@types/nunjucks": "^3.2.2",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"eslint": "^8.57.0",
"lint-staged": "^15.2.0",
"shx": "^0.3.3",
"typescript": "^5.4.3"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx --cache",
"clean": "shx rm -rf dist tsconfig.tsbuildinfo",
"build": "tsc -b",
"prepack": "yarn clean && yarn build",
"prepare": "cd ../.. && husky install"
}
}