36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"name": "@atproto/lexicon",
|
|
"version": "0.1.0",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"prettier": "prettier --check src/",
|
|
"prettier:fix": "prettier --write src/",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "yarn lint --fix",
|
|
"verify": "run-p prettier lint",
|
|
"verify:fix": "yarn prettier:fix && yarn lint:fix",
|
|
"build": "node ./build.js",
|
|
"postbuild": "tsc --build tsconfig.build.json",
|
|
"update-main-to-dist": "node ./update-pkg.js --update-main-to-dist",
|
|
"update-main-to-src": "node ./update-pkg.js --update-main-to-src",
|
|
"prepublish": "npm run update-main-to-dist",
|
|
"postpublish": "npm run update-main-to-src"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bluesky-social/atproto.git",
|
|
"directory": "packages/lexicon"
|
|
},
|
|
"dependencies": {
|
|
"@atproto/common-web": "*",
|
|
"@atproto/identifier": "*",
|
|
"@atproto/nsid": "*",
|
|
"@atproto/uri": "*",
|
|
"iso-datestring-validator": "^2.2.2",
|
|
"multiformats": "^9.6.4",
|
|
"zod": "^3.21.4"
|
|
}
|
|
}
|