mirror of
https://github.com/pezkuwichain/bizinikiwi-connect.git
synced 2026-04-22 00:47:54 +00:00
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@bizinikiwi/connect-extension-protocol",
|
|
"version": "2.2.2",
|
|
"description": "Protocol for connect message passing with the extension",
|
|
"author": "Parity Team <admin@parity.io>",
|
|
"license": "GPL-3.0-only",
|
|
"type": "module",
|
|
"main": "./dist/commonjs/index.js",
|
|
"types": "./dist/commonjs/index.d.ts",
|
|
"module": "./dist/esm/index.js",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"@bizinikiwi-connect/source": "./src/index.ts",
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/commonjs/index.d.ts",
|
|
"default": "./dist/commonjs/index.js"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"tshy": {
|
|
"project": "./tsconfig.build.json",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./src/index.ts"
|
|
},
|
|
"sourceDialects": [
|
|
"@bizinikiwi-connect/source"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"prepare": "corepack pnpm turbo build",
|
|
"deep-clean": "npm run clean && rimraf dist node_modules",
|
|
"clean": "rimraf dist .tshy .tshy-build",
|
|
"build": "npm run clean && tshy",
|
|
"test": "exit 0; #This package is only types",
|
|
"lint": "eslint . --ext .js,.ts"
|
|
},
|
|
"devDependencies": {
|
|
"vitest": "^2.1.9"
|
|
}
|
|
}
|