-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.47 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
{
"author": "Florian Imdahl <[email protected]>",
"bin": "dist/cli.js",
"dependencies": {
"commander": "13.0.0",
"fs-extra": "11.2.0",
"json-schema-to-typescript": "15.0.3",
"jsonabc": "2.3.1",
"semver": "7.6.3"
},
"devDependencies": {
"@evilmartians/lefthook": "1.10.8",
"@ffflorian/eslint-config": "0.10.3",
"@ffflorian/prettier-config": "0.3.3",
"@types/eslint": "8.56.7",
"@types/fs-extra": "11.0.4",
"@types/jsonabc": "2.3.3",
"@types/lodash": "4.17.13",
"@types/node": "~20",
"@types/prettier": "3.0.0",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-oxlint": "0.15.5",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-unused-imports": "4.1.4",
"logdown": "3.3.1",
"oxlint": "0.15.4",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"engines": {
"node": ">= 14.10"
},
"files": [
"dist",
"settings.json"
],
"license": "GPL-3.0",
"main": "dist/index.js",
"name": "schemastore-updater",
"packageManager": "[email protected]",
"prettier": "@ffflorian/prettier-config",
"repository": "https://github.com/ffflorian/schemastore-updater.git",
"scripts": {
"build": "tsc",
"clear": "rimraf dist",
"check-disabled": "yarn start check-disabled",
"fix-lockfile": "yarn start fix-lockfile",
"dist": "yarn clear && yarn build",
"fix": "yarn fix:other && yarn fix:ts",
"fix:other": "yarn format --write",
"fix:ts": "yarn lint:ts --fix",
"lint": "yarn lint:ts && yarn lint:other",
"lint:other": "yarn format --list-different",
"lint:ts": "yarn lint:oxlint && yarn lint:eslint",
"lint:oxlint": "oxlint --ignore-path .gitignore src/",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts src/",
"format": "prettier \"*.{json,md,yml}\"",
"start": "cross-env NODE_DEBUG='schemastore-updater/*' ts-node src/cli.ts",
"test": "exit 0",
"update": "yarn start update"
},
"version": "2.0.0"
}