-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "sdk-monorepo",
"displayName": "Puzzle SDK",
"version": "0.5.6",
"description": "Your portal to privacy",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "rm -rf node_modules apps/**/node_modules packages/**/node_modules pnpm-lock.yaml",
"type-check": "turbo run type-check",
"pretty": "pnpm exec prettier . --write",
"version-bump": "pnpm changeset && pnpm changeset version",
"publish-core": "pnpm build && cd ./packages/core && npm publish",
"publish-react": "pnpm build && cd ./packages/react && npm publish",
"publish": "pnpm publish-core && pnpm publish-react"
},
"dependencies": {
"@changesets/cli": "^2.27.7",
"@puzzlehq/types": "1.0.27",
"@puzzlehq/walletconnect-modal-sign-html": "0.0.9"
},
"devDependencies": {
"@types/chrome": "^0.0.228",
"@types/debug": "^4.1.7",
"@types/node": "^18.11.18",
"prettier": "^3.2.5",
"process": "^0.11.10",
"turbo": "^1.10.8",
"typescript": "^4.9.4"
},
"peerDependencies": {
"buffer": "^6.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puzzlehq/puzzle-sdk.git"
},
"keywords": [
"puzzle",
"aleo",
"web3",
"crypto"
],
"author": "Puzzle",
"license": "ISC",
"bugs": {
"url": "https://github.com/puzzlehq/puzzle-sdk/issues"
},
"homepage": "https://github.com/puzzlehq/puzzle-sdk#readme"
}