-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 3.65 KB
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
127
128
129
130
131
132
133
134
135
136
{
"name": "@tolgee/cli",
"version": "2.20.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": {
"@stomp/stompjs": "^7.1.1",
"ajv": "^8.17.1",
"ansi-colors": "^4.1.3",
"base32-decode": "^1.0.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"json5": "^2.2.3",
"jsonschema": "^1.5.0",
"openapi-fetch": "0.13.1",
"sockjs-client": "^1.6.1",
"tinyglobby": "^0.2.12",
"unescape-js": "^1.1.4",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.1.0",
"ws": "^8.18.3",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"semantic-release": "^25.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@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/sockjs-client": "^1.5.4",
"@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",
"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/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
]
}
],
"@semantic-release/github"
]
},
"imports": {
"#cli/*.js": "./src/*.js",
"#tests/*.js": "./test/*.js",
"#tests/*.json": "./test/*.json"
}
}