-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
31 lines (31 loc) · 977 Bytes
/
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
{
"name": "dapp-sdk",
"version": "1.0.0",
"description": "The only way to build great web3 experiences.",
"repository": "https://github.com/merokudao/dapp-sdk",
"author": "r48b1t <arc09@pm.me>",
"license": "MIT",
"devDependencies": {
"turbo": "^1.10.7"
},
"dependencies": {
"@yarnpkg/plugin-dlx": "^4.0.0-rc.48",
"typescript": "^5.2.2"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6"
},
"packageManager": "yarn@3.6.3",
"scripts": {
"build": "turbo run build",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:dist": "find . -name 'dist' -type d -prune -exec rm -rf '{}' +",
"clean": "yarn clean:dist; yarn clean:node_modules",
"genTree": "find packages -not -name '.turbo' -not -name '.DS_Store' -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'",
"prepublish": "yarn clean; yarn build"
}
}