-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.02 KB
/
package.json
File metadata and controls
51 lines (51 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
{
"name": "@atcute/leaflet",
"version": "1.0.21",
"description": "Leaflet (pub.leaflet.*) schema definitions",
"keywords": [
"atcute",
"atproto",
"leaflet"
],
"license": "0BSD",
"repository": {
"url": "https://github.com/mary-ext/atcute",
"directory": "packages/definitions/leaflet"
},
"files": [
"dist/",
"lib/",
"!lib/**/*.bench.ts",
"!lib/**/*.test.ts"
],
"type": "module",
"exports": {
".": "./dist/index.js",
"./types/*": "./dist/lexicons/types/pub/leaflet/*.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsgo",
"pull": "lex-cli pull",
"generate": "rm -r ./lib/lexicons/; lex-cli generate",
"prepublish": "rm -rf dist; pnpm run build"
},
"dependencies": {
"@atcute/atproto": "workspace:^",
"@atcute/lexicons": "workspace:^"
},
"devDependencies": {
"@atcute/leaflet": "file:",
"@atcute/lex-cli": "workspace:^"
},
"atcute:lexicons": {
"mappings": {
"pub.leaflet.*": {
"type": "namespace",
"path": "./types/{{nsid_remainder}}"
}
}
}
}