-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.02 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@metadaoproject/futarchy",
"version": "0.7.4-alpha.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "BSL-1.0",
"files": [
"/dist"
],
"exports": {
".": "./dist/index.js",
"./v0.3": "./dist/v0.3/index.js",
"./v0.4": "./dist/v0.4/index.js",
"./v0.5": "./dist/v0.5/index.js",
"./v0.6": "./dist/v0.6/index.js",
"./v0.7": "./dist/v0.7/index.js"
},
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"build": "tsc",
"build-local": "rm -rf ./dist && cp ../target/types/* ./src/v0.7/types && yarn tsc",
"prepublishOnly": "yarn lint:fix && yarn build"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@metaplex-foundation/umi-uploader-bundlr": "^0.9.2",
"@noble/hashes": "^1.4.0",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.76.0",
"@sqds/multisig": "^2.1.4",
"bn.js": "^5.2.1",
"decimal.js": "^10.4.3",
"esbuild": "^0.17.15"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "3.6.2",
"solana-bankrun": "^0.2.0",
"spl-token-bankrun": "0.2.3",
"ts-mocha": "^10.0.0",
"typescript": "^5.5.5"
},
"resolutions": {
"error-ex": "=1.3.2",
"strip-ansi": "=6.0.1",
"wrap-ansi": "=7.0.0",
"ansi-styles": "=4.3.0",
"color-string": "=2.1.0",
"is-arrayish": "=0.3.2",
"chalk": "=4.1.2",
"supports-color": "=7.2.0",
"slice-ansi": "=5.0.0",
"ansi-regex": "=5.0.1",
"color-name": "=2.0.0",
"chalk-template": "=0.4.0",
"supports-hyperlinks": "=2.3.0",
"has-ansi": "=4.0.1",
"color-convert": "=2.0.1",
"backslash": "=0.2.0",
"simple-swizzle": "=0.2.2",
"debug": "=4.4.1",
"color": "=4.2.3"
}
}