-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "bitmask-connect",
"version": "1.0.0",
"description": "Bitmask web SDK to connect dApps with the Bitmask browser extension via content-script messaging.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./lasereyes": {
"import": "./dist/lasereyes.js",
"require": "./dist/lasereyes.cjs",
"types": "./dist/lasereyes.d.ts"
}
},
"repository": "https://github.com/bitmask-stack/bitmask-connect.git",
"author": "Jose Robles <jd.robles@gmail.com>",
"license": "MIT",
"dependencies": {
"bitmask-core": "1.0.0-beta.9"
},
"devDependencies": {
"tsup": "^8.0.1",
"typescript": "^5.5.0"
},
"scripts": {
"build": "tsup src/index.ts src/lasereyes.ts --dts --format cjs,esm --clean && node scripts/prepare-dist.cjs",
"dev": "tsup src/index.ts src/lasereyes.ts --dts --format cjs,esm --watch",
"prod": "yarn build && yarn typecheck",
"typecheck": "tsc --noEmit"
},
"files": [
"dist",
"README.md"
]
}