-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@hypercerts-org/lexicon",
"version": "0.4.0",
"description": "ATProto lexicon definitions and TypeScript types for the Hypercerts protocol",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"lexicons",
"src"
],
"keywords": [
"hypercerts",
"atproto",
"lexicon",
"typescript"
],
"author": "Hypercerts Foundation",
"license": "MIT",
"repository": {
"url": "https://github.com/hypercerts-org/hypercerts-sdk.git"
},
"scripts": {
"build": "rollup -c",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "eslint .",
"format": "prettier --write .",
"gen-api": "find ./lexicons -name '*.json' | xargs lex gen-api --yes ./src",
"gen-md": "find ./lexicons -name '*.json' | xargs lex gen-md --yes ./lexicons.md",
"gen-ts": "find ./lexicons -name '*.json' | xargs lex gen-ts-obj > src/lexicons.ts",
"lex": "lex",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@atproto/lexicon": "^0.5.1",
"multiformats": "^13.3.6"
},
"devDependencies": {
"@atproto/lex-cli": "^0.9.5",
"@atproto/xrpc": "^0.7.5",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.3"
},
"peerDependencies": {
"@atproto/xrpc": "*"
},
"sideEffects": false
}