Home / File/ package.json — drizzle-orm Source File

package.json — drizzle-orm Source File

Architecture documentation for package.json, a json file in the drizzle-orm codebase.

Entity Profile

Source Code

{
	"name": "drizzle-arktype",
	"version": "0.1.3",
	"description": "Generate arktype schemas from Drizzle ORM schemas",
	"type": "module",
	"scripts": {
		"build": "tsx scripts/build.ts",
		"b": "pnpm build",
		"test:types": "cd tests && tsc",
		"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
		"publish": "npm publish package.tgz",
		"test": "vitest run",
		"bench:types": "tsx ./benchmarks/types.ts"
	},
	"exports": {
		".": {
			"import": {
				"types": "./index.d.mts",
				"default": "./index.mjs"
			},
			"require": {
				"types": "./index.d.cjs",
				"default": "./index.cjs"
			},
			"types": "./index.d.ts",
			"default": "./index.mjs"
		}
	},
	"main": "./index.cjs",
	"module": "./index.mjs",
	"types": "./index.d.ts",
	"publishConfig": {
		"provenance": true
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/drizzle-team/drizzle-orm.git"
	},
	"keywords": [
		"arktype",
		"validate",
		"validation",
		"schema",
		"drizzle",
		"orm",
		"pg",
		"mysql",
		"postgresql",
		"postgres",
		"sqlite",
		"database",
		"sql",
		"typescript",
		"ts"
	],
	"author": "Drizzle Team",
	"license": "Apache-2.0",
	"peerDependencies": {
		"arktype": ">=2.0.0",
		"drizzle-orm": ">=0.36.0"
	},
	"devDependencies": {
		"@ark/attest": "^0.45.8",
		"@rollup/plugin-typescript": "^11.1.0",
		"@types/node": "^18.15.10",
		"arktype": "^2.1.10",
		"cpy": "^10.1.0",
		"drizzle-orm": "link:../drizzle-orm/dist",
		"json-rules-engine": "7.3.1",
		"rimraf": "^5.0.0",
		"rollup": "^3.29.5",
		"tsx": "^4.19.3",
		"vite-tsconfig-paths": "^4.3.2",
		"vitest": "^3.1.3",
		"zx": "^7.2.2"
	}
}

Frequently Asked Questions

What does package.json do?
package.json is a source file in the drizzle-orm codebase, written in json.
Where is package.json in the architecture?
package.json is located at drizzle-arktype/package.json (directory: drizzle-arktype).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free