mirror of
https://github.com/ION606/archivebot.git
synced 2026-06-05 23:46:13 +00:00
Initial commit
This commit is contained in:
+107
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"name": "zod",
|
||||
"version": "3.14.2",
|
||||
"description": "TypeScript-first schema declaration and validation library with static type inference",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
"module": "./lib/index.mjs",
|
||||
"dependencies": {},
|
||||
"exports": {
|
||||
".": {
|
||||
"require": "./lib/index.js",
|
||||
"import": "./lib/index.mjs",
|
||||
"types": "./lib/index.d.ts"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"files": [
|
||||
"/lib"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/colinhacks/zod"
|
||||
},
|
||||
"author": "Colin McDonnell <colin@colinhacks.com>",
|
||||
"license": "MIT",
|
||||
"sideEffects": false,
|
||||
"bugs": {
|
||||
"url": "https://github.com/colinhacks/zod/issues"
|
||||
},
|
||||
"homepage": "https://github.com/colinhacks/zod",
|
||||
"funding": "https://github.com/sponsors/colinhacks",
|
||||
"support": {
|
||||
"backing": {
|
||||
"npm-funding": true
|
||||
}
|
||||
},
|
||||
"keywords": [
|
||||
"typescript",
|
||||
"schema",
|
||||
"validation",
|
||||
"type",
|
||||
"inference"
|
||||
],
|
||||
"scripts": {
|
||||
"prettier:check": "prettier --check src/**/*.ts deno/lib/**/*.ts --no-error-on-unmatched-pattern",
|
||||
"prettier:fix": "prettier --write src/**/*.ts deno/lib/**/*.ts --no-error-on-unmatched-pattern",
|
||||
"lint:check": "eslint --ext .ts ./src",
|
||||
"lint:fix": "eslint --fix --ext .ts ./src",
|
||||
"check": "yarn lint:check && yarn prettier:check",
|
||||
"fix": "yarn lint:fix && yarn prettier:fix",
|
||||
"clean": "rm -rf lib/* deno/lib/*",
|
||||
"build": "yarn run clean && npm run build:cjs && npm run build:esm && npm run build:deno",
|
||||
"build:deno": "node ./deno/build.mjs",
|
||||
"build:esm": "rollup --config rollup.config.js",
|
||||
"build:cjs": "tsc --p tsconfig.cjs.json",
|
||||
"build:types": "tsc --p tsconfig.types.json",
|
||||
"rollup": "rollup --config rollup.config.js",
|
||||
"test": "jest --coverage",
|
||||
"test:deno": "cd deno && deno test",
|
||||
"badge": "make-coverage-badge --output-path ./coverage.svg",
|
||||
"prepublishOnly": "npm run test && npm run build && npm run build:deno",
|
||||
"play": "nodemon -e ts -w . -x ts-node src/playground.ts --project tsconfig.json --trace-warnings",
|
||||
"depcruise": "depcruise -c .dependency-cruiser.js src",
|
||||
"benchmark": "ts-node src/benchmarks/index.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-typescript": "^8.2.0",
|
||||
"@types/benchmark": "^2.1.0",
|
||||
"@types/jest": "^26.0.17",
|
||||
"@types/node": "^14.14.10",
|
||||
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
||||
"@typescript-eslint/parser": "^5.15.0",
|
||||
"benchmark": "^2.1.4",
|
||||
"dependency-cruiser": "^9.19.0",
|
||||
"eslint": "^7.15.0",
|
||||
"eslint-config-prettier": "^7.1.0",
|
||||
"eslint-plugin-ban": "^1.5.2",
|
||||
"eslint-plugin-import": "^2.22.1",
|
||||
"eslint-plugin-simple-import-sort": "^7.0.0",
|
||||
"eslint-plugin-unused-imports": "^1.1.0",
|
||||
"husky": "^4.3.4",
|
||||
"jest": "^26.6.3",
|
||||
"lint-staged": "^10.5.3",
|
||||
"make-coverage-badge": "^1.2.0",
|
||||
"nodemon": "^2.0.2",
|
||||
"prettier": "^2.2.1",
|
||||
"rollup": "^2.42.1",
|
||||
"rollup-plugin-uglify": "^6.0.4",
|
||||
"table": "^6.8.0",
|
||||
"ts-jest": "^26.4.4",
|
||||
"ts-node": "^9.1.0",
|
||||
"tslib": "^2.3.1",
|
||||
"typescript": "^4.6.2"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged",
|
||||
"pre-push": "lint-staged"
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.ts": [
|
||||
"yarn lint:fix",
|
||||
"yarn prettier:fix"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user