Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
41 lines
928 B
JSON
41 lines
928 B
JSON
{
|
|
"name": "@atproto/oauth-scopes",
|
|
"version": "0.2.0",
|
|
"license": "MIT",
|
|
"description": "A library for manipulating and validating ATproto OAuth scopes in TypeScript.",
|
|
"keywords": [
|
|
"atproto",
|
|
"oauth",
|
|
"scopes",
|
|
"permissions"
|
|
],
|
|
"homepage": "https://atproto.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bluesky-social/atproto",
|
|
"directory": "packages/oauth/auth-scopes"
|
|
},
|
|
"type": "commonjs",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@atproto/did": "workspace:^",
|
|
"@atproto/lexicon": "workspace:^",
|
|
"@atproto/syntax": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^28.1.2",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"test": "jest"
|
|
}
|
|
}
|