-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
126 lines (126 loc) · 3.28 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"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": {
"prepack": "npm run build",
"build": "premove dist dist-types && tsc -p tsconfig.prod.json && tsx scripts/copyExtractorTypes.ts",
"test": "vitest run",
"test:unit": "vitest run -c unit.vitest.config.ts --dir ./test/unit",
"test:e2e": "vitest run --dir ./test/e2e",
"test:package": "tsx ./scripts/validatePackage.ts",
"test:types": "tsc --noEmit",
"tolgee:start": "tsx ./scripts/startDocker.ts",
"tolgee:stop": "docker stop tolgee_cli_e2e",
"eslint": "eslint --max-warnings 0",
"format": "eslint --fix",
"run-dev": "tsx ./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": "tsx scripts/configType.ts"
},
"author": "Jan Cizmar",
"license": "MIT",
"dependencies": {
"ansi-colors": "^4.1.3",
"base32-decode": "^1.0.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"json5": "^2.2.3",
"jsonschema": "^1.4.1",
"openapi-fetch": "0.13.1",
"tinyglobby": "^0.2.10",
"unescape-js": "^1.1.4",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.1.0",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/recommended": "^1.0.8",
"@types/eslint__js": "^8.42.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.1",
"@types/yauzl": "^2.10.3",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jiti": "^2.4.1",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^15.0.3",
"openapi-typescript": "^7.4.4",
"premove": "^4.0.0",
"prettier": "^3.4.1",
"semantic-release": "^24.2.0",
"tree-cli": "^0.6.7",
"tsx": "^4.19.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"jiti": ">= 2"
},
"peerDependenciesMeta": {
"jiti": {
"optional": true
}
},
"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"
]
},
"imports": {
"#cli/*.js": "./src/*.js",
"#tests/*.js": "./test/*.js",
"#tests/*.json": "./test/*.json"
}
}