-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "@codeperate/entity-schema-to-json-schema",
"version": "1.0.15",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"type": "module",
"scripts": {
"build": "del-cli dist && tsc -p tsconfig.build.json",
"test": "tsc -p tsconfig.test.json && node --test dist/test",
"test:only": "tsc -p tsconfig.test.json && node --test --test-only dist/test",
"develop:test": "jest --watchAll",
"release": "npm run test && del-cli dist && npm run build && npx np --yolo --no-release-draft"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeperate/entity-schema-to-json-schema.git"
},
"author": "Codeperate Limited",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeperate/entity-schema-to-json-schema/issues"
},
"homepage": "https://github.com/codeperate/entity-schema-to-json-schema#readme",
"peerDependencies": {
"@codeperate/json-schema-builder": "^1.0.9",
"@mikro-orm/core": "^6.4.2"
},
"devDependencies": {
"@codeperate/json-schema-builder": "^1.0.9",
"@mikro-orm/core": "^6.4.2",
"@mikro-orm/mongodb": "^6.4.2",
"@sinclair/typebox": "^0.34.13",
"@types/node": "^20.11.5",
"del-cli": "^6.0.0",
"typescript": "latest"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"json-schema-to-ts": "^3.1.1"
}
}