-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@boxfish-studio/candymachine-client-sdk",
"version": "1.0.0",
"description": "Metaplex Candy Machine Client SDK",
"keywords": [
"metaplex",
"candy-machine",
"solana",
"nft",
"client",
"sdk"
],
"homepage": "https://boxfish.studio/",
"repository": {
"type": "git",
"url": "http://github.com/boxfish-studio/candymachine-client-sdk.git"
},
"bugs": {
"url": "http://github.com/boxfish-studio/candymachine-client-sdk.git/issues"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"scripts": {
"compile": "tsup src/index.ts --sourcemap --dts --format esm,cjs",
"prepare": "husky install",
"format": "prettier --write \"./**/*.{js,ts}\"",
"lint": "eslint \"./**/*.{js,ts}\""
},
"author": "Boxfish Studio <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"typescript": "^4.9.4",
"tsup": "^6.5.0"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@metaplex/arweave-cost": "^1.0.4",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.73.0",
"@supercharge/promise-pool": "^2.3.2",
"husky": "^8.0.3",
"js-file-download": "^0.4.12",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
]
}
}