mirror of
https://github.com/selfxyz/self.git
synced 2026-04-27 03:01:15 -04:00
* sc-01 first commmit * fix pipelines * fix build * add missing * pipeline fixes * last round of feedback
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "@selfxyz/webview-bridge",
|
|
"version": "0.0.1-alpha.1",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./mock": {
|
|
"types": "./dist/mock.d.ts",
|
|
"import": "./dist/mock.js",
|
|
"require": "./dist/mock.cjs"
|
|
},
|
|
"./schema": {
|
|
"types": "./dist/schema.d.ts",
|
|
"import": "./dist/schema.js",
|
|
"require": "./dist/schema.cjs"
|
|
},
|
|
"./adapters": {
|
|
"types": "./dist/adapters.d.ts",
|
|
"import": "./dist/adapters.js",
|
|
"require": "./dist/adapters.cjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit",
|
|
"types": "tsup"
|
|
},
|
|
"dependencies": {
|
|
"@selfxyz/mobile-sdk-alpha": "workspace:^",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.18.3",
|
|
"fake-indexeddb": "^6.2.5",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"packageManager": "yarn@4.12.0"
|
|
}
|