blob: 0c4e32e36a9afb2169e4be855233a6b93af4d417 [file]
{
"name": "@apachedubbo/dubbo-node",
"version": "3.0.0-alpha",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/apache/dubbo-js.git",
"directory": "packages/dubbo-node"
},
"scripts": {
"clean": "rm -rf ./dist/cjs/* ./dist/esm/* ./dist/types/*",
"build": "npm run build:cjs && npm run build:esm+types",
"build:cjs": "tsc --project tsconfig.json --module commonjs --outDir ./dist/cjs && echo >./dist/cjs/package.json '{\"type\":\"commonjs\"}'",
"build:esm+types": "tsc --project tsconfig.json --module ES2015 --verbatimModuleSyntax --outDir ./dist/esm --declaration --declarationDir ./dist/types",
"jasmine": "jasmine --config=jasmine.json"
},
"main": "./dist/cjs/index.js",
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@apachedubbo/dubbo": "3.0.0-alpha",
"headers-polyfill": "^3.1.2"
},
"peerDependencies": {
"@bufbuild/protobuf": "^1.2.1"
},
"devDependencies": {
"@apachedubbo/dubbo-observable": "3.0.0-alpha",
"@types/jasmine": "^4.3.1",
"jasmine": "^5.0.0"
},
"files": [
"dist/**"
]
}