forked from tolgee/tolgee-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@tolgee/cli",
"version": "0.1.0",
"type": "module",
"description": "A tool to interact with the Tolgee Platform through CLI",
"repository": {
"type": "git",
"url": "https://github.com/tolgee/tolgee-cli.git"
},
"bin": {
"tolgee": "./dist/cli.js"
},
"scripts": {
"build": "rimraf dist dist-types && tsc -p tsconfig.prod.json && node scripts/copyExtractorTypes.mjs",
"test": "vitest run",
"test:unit": "vitest run -c unit.vitest.config.ts --dir ./src/test/unit",
"test:e2e": "vitest run --dir ./src/test/e2e",
"test:package": "node scripts/validatePackage.js",
"tolgee:start": "node scripts/startDocker.js",
"tolgee:stop": "docker stop tolgee_cli_e2e",
"lint": "eslint --ext .ts --ext .js --ext .cjs ./src ./scripts vitest.config.ts",
"prettier": "prettier --write ./src ./scripts vitest.config.ts",
"run-dev": "cross-env NODE_OPTIONS=\"--import=./scripts/registerTsNode.js\" node ./src/cli.ts",
"schema": "openapi-typescript http://localhost:22222/v3/api-docs/All%20Internal%20-%20for%20Tolgee%20Web%20application --output src/client/internal/schema.generated.ts",
"release": "semantic-release",
"config:type": "node scripts/configType.mjs"
},
"author": "Jan Cizmar",
"license": "MIT",
"dependencies": {
"ansi-colors": "^4.1.3",
"base32-decode": "^1.0.0",
"commander": "^12.0.0",
"cosmiconfig": "^8.2.0",
"form-data": "^4.0.0",
"glob": "^10.3.3",
"json5": "^2.2.3",
"jsonschema": "^1.4.1",
"openapi-fetch": "^0.9.7",
"undici": "^5.22.1",
"vscode-oniguruma": "^1.7.0",
"vscode-textmate": "^9.0.0",
"xstate": "^4.38.1",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.4.5",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-plugin-prettier": "^5.0.0",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^13.1.2",
"openapi-typescript": "^6.7.6",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.7",
"tree-cli": "^0.6.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist",
"textmate",
"extractor.d.ts",
"schema.json",
"README.md",
"LICENSE"
],
"release": {
"branches": [
"main",
{
"name": "next",
"channel": "next"
},
{
"name": "prerelease",
"channel": "rc",
"prerelease": "rc"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
]
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}