-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "crowdin-github-actions",
"version": "1.0.0",
"description": "Utilities for uploading/downloading with Crowdin",
"main": "prod/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"package": "ncc build src/index.ts -o dist",
"start": "echo 'This is a GitHub Action and is not meant to run locally.'",
"test": "echo 'No tests yet!'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhcarrigan/crowdin-action.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nhcarrigan/crowdin-action/issues"
},
"homepage": "https://github.com/nhcarrigan/crowdin-action#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^20.16.5",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsdoc": "^37.2.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.3"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^6.0.0",
"fs-extra": "^10.0.0",
"gray-matter": "^4.0.3",
"node-fetch": "^2.6.6",
"node-opencc": "^2.0.1"
}
}