-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "@idrinth-api-bench/typescript-language-from-yaml",
"version": "1.4.0",
"description": "Translates yaml files to ts for translation autocompletion, autocorrection and better developer support",
"bin": {
"itlfy": "bin/itlfy.js"
},
"type": "module",
"scripts": {
"lint": "eslint . --ext ts",
"lint-fix": "eslint . --fix",
"tsc": "tsc -p tsconfig.json",
"prepublishOnly": "npm run tsc",
"clear": "node tools/clear-js-files-from-src.js",
"postpublish": "npm run clear"
},
"homepage": "https://idrinth-api-ben.ch",
"bugs": {
"url": "https://github.com/idrinth-api-bench/api-bench"
},
"repository": {
"type": "git",
"url": "https://github.com/idrinth-api-bench/typescript-language-from-yaml"
},
"keywords": [
"transslation",
"typescript",
"yaml",
"automation"
],
"author": "Björn Büttner",
"license": "MIT",
"dependencies": {
"yaml": "^2.4.1"
},
"devDependencies": {
"typescript": "^5.4.3",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0"
}
}