-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "@preevy/plugin-github",
"version": "0.0.67",
"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.67",
"@preevy/core": "0.0.67",
"lodash-es": "^4.17.21",
"nunjucks": "^3.2.4",
"octokit": "^3.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@types/nunjucks": "^3.2.2",
"@typescript-eslint/eslint-plugin": "8.30.1",
"@typescript-eslint/parser": "8.30.1",
"eslint": "^9.25.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.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"
}
}