-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mint.club-v2-sdk",
"files": [
"./dist/**/*",
"./src/**/*"
],
"type": "module",
"license": "BSD-3-Clause",
"version": "1.0.6",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": {
"./dist/index.mjs": "./dist/index.mjs",
"./dist/index.cjs": "./dist/index.cjs"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./node": {
"import": "./dist/node.mjs",
"require": "./dist/node.cjs",
"default": "./dist/node.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"docs:deploy": "",
"build": "npm run purge && npx pkgroll",
"prepublishOnly": "git push && npm run build",
"purge": "npx rimraf ./dist",
"test": "npx bun test",
"test:watch": "npx bun test --watch",
"hardhat": "NODE_ENV=hardhat npx bun test hardhat"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-viem": "^2.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/bun": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"bun": "^1.0.25",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"hardhat": "^2.20.1",
"mint-club-v2": "github:Steemhunt/mint.club-v2-contract",
"pkgroll": "^2.0.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@filebase/client": "^0.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.14.202",
"abitype": "^1.0.0",
"aws-sdk": "^2.1578.0",
"dotenv": "^16.4.5",
"jsdom": "^24.0.0",
"ky-universal": "^0.12.0",
"lodash": "^4.17.21",
"merkletreejs": "^0.3.11",
"viem": "^2.21.15"
}
}