forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "schemastore.org",
"version": "1.0.0",
"description": "A collection of JSON Schemas",
"private": true,
"homepage": "https://schemastore.org",
"bugs": {
"url": "https://github.com/schemastore/SchemaStore/issues"
},
"engines": {
"node": ">=18"
},
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/schemastore/SchemaStore"
},
"type": "module",
"scripts": {
"prettier": "prettier --config .prettierrc.cjs --ignore-path .gitignore --check .",
"prettier:fix": "prettier --config .prettierrc.cjs --ignore-path .gitignore --write .",
"typecheck": "tsc --project ./jsconfig.json",
"eslint": "eslint ./cli.js",
"eslint:fix": "eslint --fix ./cli.js"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@exodus/schemasafe": "^1.3.0",
"@hyperupcall/ajv-formats-draft2019": "^1.7.2",
"@prantlf/jsonlint": "^16.0.0",
"@types/node": "^20.19.39",
"ajv": "^8.18.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"chalk": "^5.6.2",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.4.0",
"jsonc-parser": "^3.3.1",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"ora": "^9.3.0",
"prettier": "^3.8.2",
"prettier-plugin-sort-json": "^4.2.0",
"prettier-plugin-toml": "2.0.3",
"smol-toml": "^1.6.1",
"typescript": "^6.0.2",
"yaml": "^2.8.3"
}
}