-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.79 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
{
"name": "@scenamatica/action",
"version": "2.0.0",
"description": "Scenamatica is a sc1enario testing tool for PaperMC plugins.",
"scripts": {
"build": "tsc --build",
"package": "esbuild --bundle lib/main.js --keep-names --outfile=src/dist/index.js --platform=node",
"prepublish": "npm run build && npm run package",
"start": "node dist/index.js",
"format:eslint": "eslint --fix --cache .",
"format:prettier": "prettier --write .",
"format": "npm run format:eslint && npm run format:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamKUN/scenamatica-action.git"
},
"author": "Peyang",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.0.1",
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^3.0.0",
"@actions/io": "^1.1.0",
"@actions/tool-cache": "^2.0.1",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.1",
"compare-versions": "^6.0.0-rc.1"
},
"devDependencies": {
"@octokit/graphql-schema": "^14.4.0",
"@types/eslint": "^8.4.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.12.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"eslint-define-config": "^1.20.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-regexp": "^1.14.0",
"eslint-plugin-sort-class-members": "^1.17.1",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4"
},
"packageManager": "pnpm@8.3.1",
"simple-git-hooks": {
"pre-commit": "nmpm run prepublish && git add src/dist/index.js"
}
}