-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.85 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
{
"name": "onchain-magic",
"version": "0.5.12",
"private": false,
"type": "module",
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@zoralabs/protocol-deployments": "^0.0.12",
"@zoralabs/universal-minter": "^0.2.14",
"@zoralabs/zorb": "^0.1.0",
"ethers": "^5.0.0",
"nft.storage": "^7.1.1",
"wagmi": "^1.4.12"
},
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"clean": "rm -rf dist node_modules/.cache",
"format": "yarn run prettier:fix",
"lint": "tsc",
"prettier:fix": "npx prettier --write hooks lib",
"release": "yarn run build && changeset publish",
"simple-build": "yarn clean && yarn format && yarn lint && tsup index.ts --format cjs,esm --dts"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/SweetmanTech/onchainmagic-npm.git"
},
"keywords": [
"zora",
"onchain",
"onchainmagic",
"magic",
"nouns",
"cc0",
"useCreate1155Contract",
"ipfs"
],
"author": "sweetman.eth",
"license": "MIT",
"bugs": {
"url": "https://github.com/SweetmanTech/onchainmagic-npm/issues"
},
"homepage": "https://github.com/SweetmanTech/onchainmagic-npm#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/react": "^18.2.48",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}