-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
47 lines (47 loc) · 1.21 KB
/
package.json
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
{
"name": "@composedb/types",
"version": "0.8.0",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://composedb.js.org",
"keywords": [
"ceramic",
"composedb"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/js-composedb",
"directory": "packages/types"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc --strip-leading-paths",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "pnpm build:clean && pnpm build:types && pnpm build:js",
"lint": "eslint src --fix",
"prepare": "pnpm build",
"prepublishOnly": "package-check"
},
"dependencies": {
"@ceramicnetwork/common": "^6.1.0",
"@ceramicnetwork/core": "^6.1.0",
"@ceramicnetwork/http-client": "^6.1.0",
"@ceramicnetwork/stream-model": "^5.1.0",
"@ceramicnetwork/stream-model-instance": "^5.1.0",
"dids": "^5.0.2",
"json-schema-typed": "^8.0.1"
}
}