This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
{
"name": "unity-cs-action",
"version": "1.0.2",
"description": "",
"main": "lib/main.js",
"scripts": {
"build:bundle": "npm run build:types && node ./esbuild.config.mjs",
"build:types": "tsc",
"format:check": "prettier --check **/*.ts",
"format:write": "npm run format:check -- --write",
"lint": "eslint --ext \".js,.ts\" .",
"lint:fix": "npm run lint -- --fix",
"release": "release-it",
"test": "vitest",
"test:coverage": "vitest --coverage",
"build-proto": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./src/proto/ ./unity-management-console/protobuf/config.proto ./unity-management-console/protobuf/extensions.proto ./unity-management-console/protobuf/marketplace.proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unity-sds/unity-cs-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/unity-sds/unity-cs-action/issues"
},
"homepage": "https://github.com/unity-sds/unity-cs-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"actions": "^1.3.0",
"protoc-gen-ts": "^0.8.6",
"ts-proto": "^1.150.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.15.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitest/coverage-istanbul": "^0.29.7",
"chalk": "^5.0.1",
"esbuild": "^0.15.7",
"eslint": "^8.34.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.3",
"jest-circus": "^29.0.3",
"prettier": "2.7.1",
"release-it": "^15.4.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vitest": "^0.29.7"
}
}