@visulima/prisma-dmmf-transformer 2.0.17 → 2.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +136 -136
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## @visulima/prisma-dmmf-transformer [2.0.18](https://github.com/visulima/visulima/compare/@visulima/prisma-dmmf-transformer@2.0.17...@visulima/prisma-dmmf-transformer@2.0.18) (2024-06-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * allow node v22 ([890d457](https://github.com/visulima/visulima/commit/890d4570f18428e2463944813c0c638b3f142803))
7
+
8
+
9
+ ### Styles
10
+
11
+ * cs fixes on some package.json files ([12fc0f7](https://github.com/visulima/visulima/commit/12fc0f74e206cef77863b0b89ec41174ca9ff0bd))
12
+
13
+
14
+ ### Miscellaneous Chores
15
+
16
+ * changed semantic-release-npm to pnpm ([b6d100a](https://github.com/visulima/visulima/commit/b6d100a2bf3fd026577be48726a37754947f0973))
17
+ * downgrade eslint-plugin-vitest ([0162771](https://github.com/visulima/visulima/commit/0162771e6022e4594486a796bc41e91a2d87bcd8))
18
+ * update dev dependencies ([09c4854](https://github.com/visulima/visulima/commit/09c4854e221fa8b808dfe66d7196d8db2a39b366))
19
+ * updated dev dependencies ([a2e0504](https://github.com/visulima/visulima/commit/a2e0504dc239049434c2482756ff15bdbaac9b54))
20
+ * updated dev dependencies ([6005345](https://github.com/visulima/visulima/commit/60053456717a3889fc77b4fb5b05d50a662475b2))
21
+ * updated dev dependencies ([87dee15](https://github.com/visulima/visulima/commit/87dee156e797b5dee2557a09ad32c935d851847c))
22
+
1
23
  ## @visulima/prisma-dmmf-transformer [2.0.17](https://github.com/visulima/visulima/compare/@visulima/prisma-dmmf-transformer@2.0.16...@visulima/prisma-dmmf-transformer@2.0.17) (2024-04-05)
2
24
 
3
25
 
package/package.json CHANGED
@@ -1,140 +1,140 @@
1
1
  {
2
- "name": "@visulima/prisma-dmmf-transformer",
3
- "version": "2.0.17",
4
- "description": "A generator for Prisma to generate a valid JSON Schema v7.",
5
- "keywords": [
6
- "anolilab",
7
- "visulima",
8
- "prisma",
9
- "prisma2",
10
- "prisma3",
11
- "prisma4",
12
- "prisma-schema",
13
- "dmmf",
14
- "transformer",
15
- "json-schema"
16
- ],
17
- "homepage": "https://www.visulima.com/docs/package/prisma-dmmf-transformer",
18
- "repository": {
19
- "type": "git",
20
- "url": "https://github.com/visulima/visulima.git",
21
- "directory": "packages/prisma-dmmf-transformer"
2
+ "name": "@visulima/prisma-dmmf-transformer",
3
+ "version": "2.0.18",
4
+ "description": "A generator for Prisma to generate a valid JSON Schema v7.",
5
+ "keywords": [
6
+ "anolilab",
7
+ "visulima",
8
+ "prisma",
9
+ "prisma2",
10
+ "prisma3",
11
+ "prisma4",
12
+ "prisma-schema",
13
+ "dmmf",
14
+ "transformer",
15
+ "json-schema"
16
+ ],
17
+ "homepage": "https://www.visulima.com/docs/package/prisma-dmmf-transformer",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/visulima/visulima.git",
21
+ "directory": "packages/prisma-dmmf-transformer"
22
+ },
23
+ "funding": [
24
+ {
25
+ "type": "github",
26
+ "url": "https://github.com/sponsors/prisis"
22
27
  },
23
- "funding": [
24
- {
25
- "type": "github",
26
- "url": "https://github.com/sponsors/prisis"
27
- },
28
- {
29
- "type": "consulting",
30
- "url": "https://anolilab.com/support"
31
- }
32
- ],
33
- "license": "MIT",
34
- "author": {
35
- "name": "Daniel Bannert",
36
- "email": "d.bannert@anolilab.de"
37
- },
38
- "sideEffects": false,
39
- "exports": {
40
- ".": {
41
- "require": {
42
- "types": "./dist/index.d.ts",
43
- "default": "./dist/index.js"
44
- },
45
- "import": {
46
- "types": "./dist/index.d.mts",
47
- "default": "./dist/index.mjs"
48
- }
49
- },
50
- "./package.json": "./package.json"
51
- },
52
- "main": "dist/index.js",
53
- "module": "dist/index.mjs",
54
- "source": "src/index.ts",
55
- "types": "dist/index.d.ts",
56
- "files": [
57
- "dist/**",
58
- "README.md",
59
- "CHANGELOG.md",
60
- "LICENSE.md"
61
- ],
62
- "scripts": {
63
- "build": "cross-env NODE_ENV=development tsup",
64
- "build:prod": "cross-env NODE_ENV=production tsup",
65
- "clean": "rimraf node_modules dist .eslintcache",
66
- "dev": "pnpm run build --watch",
67
- "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
68
- "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
69
- "lint:packagejson": "publint --strict",
70
- "lint:prettier": "prettier --config=.prettierrc.js --check .",
71
- "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
72
- "lint:types": "tsc --noEmit",
73
- "test": "vitest run",
74
- "test:coverage": "vitest run --coverage",
75
- "test:ui": "vitest --ui --coverage.enabled=true",
76
- "test:watch": "vitest"
77
- },
78
- "dependencies": {
79
- "@prisma/generator-helper": "5.12.1"
80
- },
81
- "devDependencies": {
82
- "@anolilab/eslint-config": "^15.0.3",
83
- "@anolilab/prettier-config": "^5.0.14",
84
- "@anolilab/semantic-release-preset": "^8.0.3",
85
- "@babel/core": "^7.24.4",
86
- "@prisma/client": "4.16.2",
87
- "@prisma/internals": "5.12.1",
88
- "@rushstack/eslint-plugin-security": "^0.8.1",
89
- "@types/json-schema": "7.0.15",
90
- "@types/micromatch": "4.0.6",
91
- "@types/node": "18.18.14",
92
- "@vitest/coverage-v8": "1.4.0",
93
- "ajv": "8.12.0",
94
- "ajv-formats": "3.0.1",
95
- "cross-env": "7.0.3",
96
- "eslint": "^8.57.0",
97
- "eslint-plugin-deprecation": "^2.0.0",
98
- "eslint-plugin-etc": "^2.0.3",
99
- "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
100
- "eslint-plugin-mdx": "^3.1.5",
101
- "eslint-plugin-vitest": "^0.4.1",
102
- "eslint-plugin-vitest-globals": "^1.5.0",
103
- "prettier": "3.2.5",
104
- "prisma": "4.16.2",
105
- "rimraf": "5.0.5",
106
- "semantic-release": "23.0.7",
107
- "sort-package-json": "^2.10.0",
108
- "tsup": "8.0.2",
109
- "typescript": "5.4.4",
110
- "vitest": "1.4.0"
111
- },
112
- "peerDependencies": {
113
- "@prisma/client": "3.* || 4.*",
114
- "prisma": "3.* || 4.*"
115
- },
116
- "engines": {
117
- "node": ">=18.* <=21.*"
118
- },
119
- "os": [
120
- "darwin",
121
- "linux",
122
- "win32"
123
- ],
124
- "publishConfig": {
125
- "access": "public",
126
- "provenance": true
28
+ {
29
+ "type": "consulting",
30
+ "url": "https://anolilab.com/support"
31
+ }
32
+ ],
33
+ "license": "MIT",
34
+ "author": {
35
+ "name": "Daniel Bannert",
36
+ "email": "d.bannert@anolilab.de"
37
+ },
38
+ "sideEffects": false,
39
+ "exports": {
40
+ ".": {
41
+ "require": {
42
+ "types": "./dist/index.d.ts",
43
+ "default": "./dist/index.js"
44
+ },
45
+ "import": {
46
+ "types": "./dist/index.d.mts",
47
+ "default": "./dist/index.mjs"
48
+ }
127
49
  },
128
- "anolilab": {
129
- "eslint-config": {
130
- "plugin": {
131
- "tsdoc": false
132
- },
133
- "warn_on_unsupported_typescript_version": false,
134
- "info_on_disabling_jsx_react_rule": false,
135
- "info_on_disabling_prettier_conflict_rule": false,
136
- "info_on_disabling_jsonc_sort_keys_rule": false,
137
- "info_on_disabling_etc_no_deprecated": false
138
- }
50
+ "./package.json": "./package.json"
51
+ },
52
+ "main": "dist/index.js",
53
+ "module": "dist/index.mjs",
54
+ "source": "src/index.ts",
55
+ "types": "dist/index.d.ts",
56
+ "files": [
57
+ "dist/**",
58
+ "README.md",
59
+ "CHANGELOG.md",
60
+ "LICENSE.md"
61
+ ],
62
+ "dependencies": {
63
+ "@prisma/generator-helper": "5.12.1"
64
+ },
65
+ "devDependencies": {
66
+ "@anolilab/eslint-config": "^15.0.3",
67
+ "@anolilab/prettier-config": "^5.0.14",
68
+ "@anolilab/semantic-release-pnpm": "^1.1.0",
69
+ "@anolilab/semantic-release-preset": "^8.1.0",
70
+ "@babel/core": "^7.24.6",
71
+ "@prisma/client": "4.16.2",
72
+ "@prisma/internals": "5.12.1",
73
+ "@rushstack/eslint-plugin-security": "^0.8.1",
74
+ "@types/json-schema": "7.0.15",
75
+ "@types/micromatch": "4.0.6",
76
+ "@types/node": "18.18.14",
77
+ "@vitest/coverage-v8": "1.5.0",
78
+ "ajv": "8.12.0",
79
+ "ajv-formats": "3.0.1",
80
+ "cross-env": "7.0.3",
81
+ "eslint": "^8.57.0",
82
+ "eslint-plugin-deprecation": "^3.0.0",
83
+ "eslint-plugin-etc": "^2.0.3",
84
+ "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
85
+ "eslint-plugin-mdx": "^3.1.5",
86
+ "eslint-plugin-vitest": "^0.4.1",
87
+ "eslint-plugin-vitest-globals": "^1.5.0",
88
+ "prettier": "3.2.5",
89
+ "prisma": "4.16.2",
90
+ "rimraf": "5.0.5",
91
+ "semantic-release": "23.0.8",
92
+ "tsup": "8.0.2",
93
+ "typescript": "5.4.5",
94
+ "vitest": "1.5.0"
95
+ },
96
+ "peerDependencies": {
97
+ "@prisma/client": "3.* || 4.*",
98
+ "prisma": "3.* || 4.*"
99
+ },
100
+ "engines": {
101
+ "node": ">=18.* <=22.*"
102
+ },
103
+ "os": [
104
+ "darwin",
105
+ "linux",
106
+ "win32"
107
+ ],
108
+ "publishConfig": {
109
+ "access": "public",
110
+ "provenance": true
111
+ },
112
+ "anolilab": {
113
+ "eslint-config": {
114
+ "plugin": {
115
+ "tsdoc": false
116
+ },
117
+ "warn_on_unsupported_typescript_version": false,
118
+ "info_on_disabling_jsx_react_rule": false,
119
+ "info_on_disabling_prettier_conflict_rule": false,
120
+ "info_on_disabling_jsonc_sort_keys_rule": false,
121
+ "info_on_disabling_etc_no_deprecated": false
139
122
  }
140
- }
123
+ },
124
+ "scripts": {
125
+ "build": "cross-env NODE_ENV=development tsup",
126
+ "build:prod": "cross-env NODE_ENV=production tsup",
127
+ "clean": "rimraf node_modules dist .eslintcache",
128
+ "dev": "pnpm run build --watch",
129
+ "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
130
+ "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
131
+ "lint:package-json": "publint --strict",
132
+ "lint:prettier": "prettier --config=.prettierrc.js --check .",
133
+ "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
134
+ "lint:types": "tsc --noEmit",
135
+ "test": "vitest run",
136
+ "test:coverage": "vitest run --coverage",
137
+ "test:ui": "vitest --ui --coverage.enabled=true",
138
+ "test:watch": "vitest"
139
+ }
140
+ }