-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.22 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@composedb/devtools",
"version": "0.8.0",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://composedb.js.org",
"keywords": [
"ceramic",
"composedb",
"developer"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/js-composedb",
"directory": "packages/devtools"
},
"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 test --fix",
"test": "IPFS_FLAVOR=go node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"test:ci": "pnpm run test --ci --coverage",
"prepare": "pnpm build",
"prepublishOnly": "package-check"
},
"dependencies": {
"@ceramicnetwork/common": "^6.1.0",
"@ceramicnetwork/stream-model": "^5.1.0",
"@ceramicnetwork/streamid": "^5.5.0",
"@composedb/graphql-scalars": "workspace:^",
"@didtools/cacao": "^3.0.1",
"@graphql-tools/schema": "^10.0.4",
"@graphql-tools/utils": "^10.3.2",
"change-case": "^5.4.4",
"json-ptr": "^3.1.1",
"lodash-es": "^4.17.21",
"multiformats": "^13.1.3",
"object-hash": "^3.0.0",
"type-fest": "^4.22.0",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"@composedb/test-schemas": "workspace:^",
"@composedb/types": "workspace:^",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.11",
"@types/object-hash": "^3.0.6",
"ajv": "^8.17.1",
"dids": "^5.0.2",
"fs-extra": "^11.2.0",
"graphql": "^16.9.0",
"jest-environment-composedb": "workspace:^"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
}
}