-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "from-schema",
"version": "0.1.1",
"description": "Infer TypeScript types from JSON schemas",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"format": "prettier -w . && eslint --fix",
"lint": "prettier -c . && eslint",
"clean": "rm -rf dist build tmp node_modules",
"build-anew": "npm run clean && npm i && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airgap/from-schema.git"
},
"keywords": [
"jsonschema"
],
"author": "airgap",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/airgap/from-schema/issues"
},
"homepage": "https://github.com/airgap/from-schema#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ajv": "^8.16.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.1.0",
"from-schema": "^0.0.13",
"prettier": "^4.0.0-alpha.8",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"typescript": "^5.1.6"
},
"optionalDependencies": {
"mongodb": "^6.8.0"
}
}