@composedb/devtools
Version:
Development tools for ComposeDB projects.
84 lines • 2.17 kB
JSON
{
"name": "@composedb/devtools",
"version": "0.7.1",
"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,
"dependencies": {
"@ceramicnetwork/common": "^5.1.0",
"@ceramicnetwork/stream-model": "^4.1.0",
"@ceramicnetwork/streamid": "^5.0.0",
"@didtools/cacao": "^3.0.1",
"@graphql-tools/schema": "^10.0.3",
"@graphql-tools/utils": "^10.1.0",
"change-case": "^5.4.3",
"json-ptr": "^3.1.1",
"lodash-es": "^4.17.21",
"multiformats": "^13.1.0",
"object-hash": "^3.0.0",
"type-fest": "^4.10.2",
"uint8arrays": "^5.0.2",
"@composedb/graphql-scalars": "^0.7.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.20",
"@types/object-hash": "^3.0.6",
"ajv": "^8.12.0",
"dids": "^5.0.2",
"fs-extra": "^11.2.0",
"graphql": "^16.8.1",
"@composedb/test-schemas": "^0.7.1",
"@composedb/types": "^0.7.1",
"jest-environment-composedb": "^0.7.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
},
"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": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"test:ci": "pnpm run test --ci --coverage"
}
}