-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "at-protocol-bookmark-lexicon",
"version": "1.0.0",
"description": "AT Protocol lexicon definitions for a decentralized bookmark management system",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/at-protocol-bookmark-lexicon.git"
},
"keywords": [
"atproto",
"at-protocol",
"bluesky",
"bookmarks",
"lexicon",
"decentralized"
],
"scripts": {
"validate": "node scripts/validate-lexicons.js",
"generate-types": "node scripts/generate-types.js",
"test": "node scripts/test-schemas.js",
"build": "npm run validate && npm run generate-types"
},
"devDependencies": {
"@atproto/lexicon": "^0.3.0",
"typescript": "^5.0.0"
},
"files": [
"lexicons/",
"types/",
"README.md",
"LICENSE"
],
"main": "types/index.js",
"types": "types/index.d.ts"
}