-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.02 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@atcute/pckt",
"version": "1.0.7",
"description": "pckt (blog.pckt.*) schema definitions",
"keywords": [
"atcute",
"atproto",
"pckt"
],
"license": "0BSD",
"repository": {
"url": "https://tangled.org/did:plc:pljn5qch4tgadongtc7i6qij",
"directory": "packages/definitions/pckt"
},
"files": [
"dist/",
"!dist/**/*.{test,bench}.*"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./types/*": "./dist/lexicons/types/blog/pckt/*.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"pull": "lex-cli pull",
"generate": "lex-cli generate",
"prepublish": "rm -rf dist; pnpm run build"
},
"dependencies": {
"@atcute/atproto": "workspace:^",
"@atcute/lexicons": "workspace:^"
},
"devDependencies": {
"@atcute/lex-cli": "workspace:^"
},
"peerDependencies": {
"@atcute/lexicons": "^2.0.0"
},
"atcute:lexicons": {
"mappings": {
"blog.pckt.*": {
"type": "namespace",
"path": "./types/{{nsid_remainder}}"
}
}
}
}