Skip to content

Commit beb9359

Browse files
committed
Fix JSON formatting config
1 parent e4bc89e commit beb9359

32 files changed

+19258
-19247
lines changed

dprint.json

+27-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
{
2-
"typescript": {
3-
"useTabs": true,
4-
"quoteStyle": "preferSingle",
5-
"quoteProps": "asNeeded",
6-
"arrowFunction.useParentheses": "force",
7-
"jsx.quoteStyle": "preferSingle"
8-
},
9-
"json": {},
10-
"markdown": {},
11-
"includes": ["**/*.{ts,tsx,js,jsx,cjs,mjs}"],
12-
"excludes": ["**/node_modules", "**/*-lock.json", "dist", "dist-dts", "dist.new"],
13-
"plugins": [
14-
"https://plugins.dprint.dev/typescript-0.83.0.wasm",
15-
"https://plugins.dprint.dev/json-0.17.0.wasm",
16-
"https://plugins.dprint.dev/markdown-0.15.2.wasm"
17-
]
2+
"typescript": {
3+
"useTabs": true,
4+
"quoteStyle": "preferSingle",
5+
"quoteProps": "asNeeded",
6+
"arrowFunction.useParentheses": "force",
7+
"jsx.quoteStyle": "preferSingle"
8+
},
9+
"json": {
10+
"useTabs": true
11+
},
12+
"markdown": {},
13+
"includes": ["**/*.{ts,tsx,js,jsx,cjs,mjs,json}"],
14+
"excludes": [
15+
"**/node_modules",
16+
"dist",
17+
"dist-dts",
18+
"dist.new",
19+
"**/drizzle/**/meta",
20+
"**/drizzle2/**/meta",
21+
"**/*snapshot.json",
22+
"**/_journal.json"
23+
],
24+
"plugins": [
25+
"https://plugins.dprint.dev/typescript-0.83.0.wasm",
26+
"https://plugins.dprint.dev/json-0.19.2.wasm",
27+
"https://plugins.dprint.dev/markdown-0.15.2.wasm"
28+
]
1829
}

drizzle-orm/package.json

+173-173
Original file line numberDiff line numberDiff line change
@@ -1,175 +1,175 @@
11
{
2-
"name": "drizzle-orm",
3-
"version": "0.30.2",
4-
"description": "Drizzle ORM package for SQL databases",
5-
"type": "module",
6-
"scripts": {
7-
"build": "scripts/build.ts",
8-
"b": "pnpm build",
9-
"test:types": "cd type-tests && tsc",
10-
"test": "vitest run",
11-
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
12-
"publish": "npm publish package.tgz"
13-
},
14-
"main": "./index.cjs",
15-
"module": "./index.js",
16-
"types": "./index.d.ts",
17-
"sideEffects": false,
18-
"publishConfig": {
19-
"provenance": true
20-
},
21-
"repository": {
22-
"type": "git",
23-
"url": "git+https://github.com/drizzle-team/drizzle-orm.git"
24-
},
25-
"homepage": "https://orm.drizzle.team",
26-
"keywords": [
27-
"drizzle",
28-
"orm",
29-
"pg",
30-
"mysql",
31-
"postgresql",
32-
"postgres",
33-
"sqlite",
34-
"database",
35-
"sql",
36-
"typescript",
37-
"ts",
38-
"drizzle-orm"
39-
],
40-
"author": "Drizzle Team",
41-
"license": "Apache-2.0",
42-
"bugs": {
43-
"url": "https://github.com/drizzle-team/drizzle-orm/issues"
44-
},
45-
"peerDependencies": {
46-
"@aws-sdk/client-rds-data": ">=3",
47-
"@cloudflare/workers-types": ">=3",
48-
"@libsql/client": "*",
49-
"@neondatabase/serverless": ">=0.1",
50-
"@op-engineering/op-sqlite": ">=2",
51-
"@opentelemetry/api": "^1.4.1",
52-
"@planetscale/database": ">=1",
53-
"@types/better-sqlite3": "*",
54-
"@types/pg": "*",
55-
"@types/react": ">=18",
56-
"@types/sql.js": "*",
57-
"@vercel/postgres": "*",
58-
"better-sqlite3": ">=7",
59-
"bun-types": "*",
60-
"expo-sqlite": ">=13.2.0",
61-
"knex": "*",
62-
"kysely": "*",
63-
"mysql2": ">=2",
64-
"pg": ">=8",
65-
"postgres": ">=3",
66-
"react": ">=18",
67-
"sql.js": ">=1",
68-
"sqlite3": ">=5"
69-
},
70-
"peerDependenciesMeta": {
71-
"mysql2": {
72-
"optional": true
73-
},
74-
"@vercel/postgres": {
75-
"optional": true
76-
},
77-
"better-sqlite3": {
78-
"optional": true
79-
},
80-
"@types/better-sqlite3": {
81-
"optional": true
82-
},
83-
"sqlite3": {
84-
"optional": true
85-
},
86-
"sql.js": {
87-
"optional": true
88-
},
89-
"@types/sql.js": {
90-
"optional": true
91-
},
92-
"@cloudflare/workers-types": {
93-
"optional": true
94-
},
95-
"pg": {
96-
"optional": true
97-
},
98-
"@types/pg": {
99-
"optional": true
100-
},
101-
"postgres": {
102-
"optional": true
103-
},
104-
"@neondatabase/serverless": {
105-
"optional": true
106-
},
107-
"bun-types": {
108-
"optional": true
109-
},
110-
"@aws-sdk/client-rds-data": {
111-
"optional": true
112-
},
113-
"@planetscale/database": {
114-
"optional": true
115-
},
116-
"knex": {
117-
"optional": true
118-
},
119-
"kysely": {
120-
"optional": true
121-
},
122-
"@libsql/client": {
123-
"optional": true
124-
},
125-
"@opentelemetry/api": {
126-
"optional": true
127-
},
128-
"expo-sqlite": {
129-
"optional": true
130-
},
131-
"@op-engineering/op-sqlite": {
132-
"optional": true
133-
},
134-
"react": {
135-
"optional": true
136-
},
137-
"@types/react": {
138-
"optional": true
139-
}
140-
},
141-
"devDependencies": {
142-
"@aws-sdk/client-rds-data": "^3.344.0",
143-
"@cloudflare/workers-types": "^4.20230904.0",
144-
"@libsql/client": "^0.5.6",
145-
"@neondatabase/serverless": "^0.9.0",
146-
"@op-engineering/op-sqlite": "^2.0.16",
147-
"@opentelemetry/api": "^1.4.1",
148-
"@originjs/vite-plugin-commonjs": "^1.0.3",
149-
"@planetscale/database": "^1.16.0",
150-
"@types/better-sqlite3": "^7.6.4",
151-
"@types/node": "^20.2.5",
152-
"@types/pg": "^8.10.1",
153-
"@types/react": "^18.2.45",
154-
"@types/sql.js": "^1.4.4",
155-
"@vercel/postgres": "^0.3.0",
156-
"better-sqlite3": "^8.4.0",
157-
"bun-types": "^0.6.6",
158-
"cpy": "^10.1.0",
159-
"expo-sqlite": "^13.2.0",
160-
"knex": "^2.4.2",
161-
"kysely": "^0.25.0",
162-
"mysql2": "^3.3.3",
163-
"pg": "^8.11.0",
164-
"postgres": "^3.3.5",
165-
"react": "^18.2.0",
166-
"sql.js": "^1.8.0",
167-
"sqlite3": "^5.1.2",
168-
"tslib": "^2.5.2",
169-
"tsx": "^3.12.7",
170-
"vite-tsconfig-paths": "^4.2.0",
171-
"vitest": "^0.31.4",
172-
"zod": "^3.20.2",
173-
"zx": "^7.2.2"
174-
}
2+
"name": "drizzle-orm",
3+
"version": "0.30.2",
4+
"description": "Drizzle ORM package for SQL databases",
5+
"type": "module",
6+
"scripts": {
7+
"build": "scripts/build.ts",
8+
"b": "pnpm build",
9+
"test:types": "cd type-tests && tsc",
10+
"test": "vitest run",
11+
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
12+
"publish": "npm publish package.tgz"
13+
},
14+
"main": "./index.cjs",
15+
"module": "./index.js",
16+
"types": "./index.d.ts",
17+
"sideEffects": false,
18+
"publishConfig": {
19+
"provenance": true
20+
},
21+
"repository": {
22+
"type": "git",
23+
"url": "git+https://github.com/drizzle-team/drizzle-orm.git"
24+
},
25+
"homepage": "https://orm.drizzle.team",
26+
"keywords": [
27+
"drizzle",
28+
"orm",
29+
"pg",
30+
"mysql",
31+
"postgresql",
32+
"postgres",
33+
"sqlite",
34+
"database",
35+
"sql",
36+
"typescript",
37+
"ts",
38+
"drizzle-orm"
39+
],
40+
"author": "Drizzle Team",
41+
"license": "Apache-2.0",
42+
"bugs": {
43+
"url": "https://github.com/drizzle-team/drizzle-orm/issues"
44+
},
45+
"peerDependencies": {
46+
"@aws-sdk/client-rds-data": ">=3",
47+
"@cloudflare/workers-types": ">=3",
48+
"@libsql/client": "*",
49+
"@neondatabase/serverless": ">=0.1",
50+
"@op-engineering/op-sqlite": ">=2",
51+
"@opentelemetry/api": "^1.4.1",
52+
"@planetscale/database": ">=1",
53+
"@types/better-sqlite3": "*",
54+
"@types/pg": "*",
55+
"@types/react": ">=18",
56+
"@types/sql.js": "*",
57+
"@vercel/postgres": "*",
58+
"better-sqlite3": ">=7",
59+
"bun-types": "*",
60+
"expo-sqlite": ">=13.2.0",
61+
"knex": "*",
62+
"kysely": "*",
63+
"mysql2": ">=2",
64+
"pg": ">=8",
65+
"postgres": ">=3",
66+
"react": ">=18",
67+
"sql.js": ">=1",
68+
"sqlite3": ">=5"
69+
},
70+
"peerDependenciesMeta": {
71+
"mysql2": {
72+
"optional": true
73+
},
74+
"@vercel/postgres": {
75+
"optional": true
76+
},
77+
"better-sqlite3": {
78+
"optional": true
79+
},
80+
"@types/better-sqlite3": {
81+
"optional": true
82+
},
83+
"sqlite3": {
84+
"optional": true
85+
},
86+
"sql.js": {
87+
"optional": true
88+
},
89+
"@types/sql.js": {
90+
"optional": true
91+
},
92+
"@cloudflare/workers-types": {
93+
"optional": true
94+
},
95+
"pg": {
96+
"optional": true
97+
},
98+
"@types/pg": {
99+
"optional": true
100+
},
101+
"postgres": {
102+
"optional": true
103+
},
104+
"@neondatabase/serverless": {
105+
"optional": true
106+
},
107+
"bun-types": {
108+
"optional": true
109+
},
110+
"@aws-sdk/client-rds-data": {
111+
"optional": true
112+
},
113+
"@planetscale/database": {
114+
"optional": true
115+
},
116+
"knex": {
117+
"optional": true
118+
},
119+
"kysely": {
120+
"optional": true
121+
},
122+
"@libsql/client": {
123+
"optional": true
124+
},
125+
"@opentelemetry/api": {
126+
"optional": true
127+
},
128+
"expo-sqlite": {
129+
"optional": true
130+
},
131+
"@op-engineering/op-sqlite": {
132+
"optional": true
133+
},
134+
"react": {
135+
"optional": true
136+
},
137+
"@types/react": {
138+
"optional": true
139+
}
140+
},
141+
"devDependencies": {
142+
"@aws-sdk/client-rds-data": "^3.344.0",
143+
"@cloudflare/workers-types": "^4.20230904.0",
144+
"@libsql/client": "^0.5.6",
145+
"@neondatabase/serverless": "^0.9.0",
146+
"@op-engineering/op-sqlite": "^2.0.16",
147+
"@opentelemetry/api": "^1.4.1",
148+
"@originjs/vite-plugin-commonjs": "^1.0.3",
149+
"@planetscale/database": "^1.16.0",
150+
"@types/better-sqlite3": "^7.6.4",
151+
"@types/node": "^20.2.5",
152+
"@types/pg": "^8.10.1",
153+
"@types/react": "^18.2.45",
154+
"@types/sql.js": "^1.4.4",
155+
"@vercel/postgres": "^0.3.0",
156+
"better-sqlite3": "^8.4.0",
157+
"bun-types": "^0.6.6",
158+
"cpy": "^10.1.0",
159+
"expo-sqlite": "^13.2.0",
160+
"knex": "^2.4.2",
161+
"kysely": "^0.25.0",
162+
"mysql2": "^3.3.3",
163+
"pg": "^8.11.0",
164+
"postgres": "^3.3.5",
165+
"react": "^18.2.0",
166+
"sql.js": "^1.8.0",
167+
"sqlite3": "^5.1.2",
168+
"tslib": "^2.5.2",
169+
"tsx": "^3.12.7",
170+
"vite-tsconfig-paths": "^4.2.0",
171+
"vitest": "^0.31.4",
172+
"zod": "^3.20.2",
173+
"zx": "^7.2.2"
174+
}
175175
}

0 commit comments

Comments
 (0)