83b7246439
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "@atproto/lex-cbor",
|
|
"version": "0.0.16",
|
|
"license": "MIT",
|
|
"description": "Lexicon encoding utilities for AT Lexicon data in CBOR format",
|
|
"keywords": [
|
|
"atproto",
|
|
"lex",
|
|
"data",
|
|
"cbor",
|
|
"encoding",
|
|
"utilities"
|
|
],
|
|
"homepage": "https://atproto.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bluesky-social/atproto",
|
|
"directory": "packages/lex/lex-cbor"
|
|
},
|
|
"files": [
|
|
"./src",
|
|
"./tsconfig.build.json",
|
|
"./tsconfig.tests.json",
|
|
"./tsconfig.json",
|
|
"./dist",
|
|
"./CHANGELOG.md"
|
|
],
|
|
"sideEffects": false,
|
|
"type": "commonjs",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"browser": "./dist/index.mjs",
|
|
"import": "./dist/index.mjs",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@atproto/lex-data": "workspace:^",
|
|
"tslib": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@atproto/lex-json": "workspace:^",
|
|
"cborg": "^4.5.8",
|
|
"vite": "^6.2.0",
|
|
"vitest": "^4.0.16"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"prebuild": "vite build --emptyOutDir",
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"test": "vitest run"
|
|
}
|
|
}
|