-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.48 KB
/
package.json
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
42
43
44
45
46
47
48
49
{
"name": "@crossmint/connect",
"version": "0.10.0-alpha.0",
"author": "Crossmint",
"license": "Apache-2.0",
"repository": "https://github.com/Crossmint/connect",
"type": "module",
"sideEffects": false,
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"description": "",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"files": [
"lib",
"src",
"LICENSE"
],
"scripts": {
"create-version-file": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/consts/version.ts",
"prebuild": "yarn run create-version-file",
"clean": "shx rm -rf lib/*",
"build": "yarn clean && tsup src/index.ts --format esm,cjs --outDir ./lib --minify --dts",
"fmt": "prettier --write {*,**/*}.{js,ts,jsx,tsx,json}",
"test": "jest"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/prettier": "^2.6.3",
"@types/react": "^18.0.17",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
},
"dependencies": {
"@solana/wallet-adapter-base": "^0.9.7",
"@solana/web3.js": "^1.47.3",
"ethers": "^5.6.9",
"lucid-cardano": "^0.10.1",
"react": "^18.2.0",
"store2": "^2.13.2"
}
}