forked from daimo-eth/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.27 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.27 KB
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
{
"name": "@rozoai/root",
"private": true,
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "pnpm run build:common && pnpm run build:pay",
"build:common": "cd packages/pay-common && pnpm run build",
"build:pay": "cd packages/connectkit && pnpm run build",
"dev": "pnpm run dev:common & pnpm run dev:pay & pnpm run dev:example:16",
"dev:common": "cd packages/pay-common && pnpm run dev",
"dev:pay": "cd packages/connectkit && pnpm run dev",
"dev:example": "cd examples/nextjs-app && pnpm run dev",
"dev:example:16": "cd examples/nextjs-16 && pnpm run dev",
"install:local": "pnpm install",
"prepare": "husky",
"release": "pnpm run build && cd packages/pay-common && pnpm publish && cd ../../packages/connectkit && pnpm run release",
"clean": "pnpm exec rimraf \"**/node_modules\"",
"clean:full": "pnpm run clean && rm -f pnpm-lock.yaml",
"clean:deps": "pnpm exec rimraf \"**/node_modules\" \"**/dist\" \"**/build\" \"**/.next\"",
"clean:all": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && find . -name 'dist' -type d -prune -exec rm -rf '{}' + && find . -name 'build' -type d -prune -exec rm -rf '{}' + && find . -name '.next' -type d -prune -exec rm -rf '{}' + && rm -f pnpm-lock.yaml"
},
"lint-staged": {
"packages/connectkit/**/*.{js,jsx,ts,tsx}": [
"cd packages/connectkit && pnpm exec eslint --quiet"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"depcheck": "^1.4.7",
"husky": "^9.1.7",
"knip": "^5.83.0",
"lint-staged": "^16.2.7",
"rimraf": "^6.0.1",
"ts-prune": "^0.10.3"
},
"workspaces": [
"packages/*",
"examples/*"
],
"pnpm": {
"overrides": {
"@stellar/stellar-sdk": "^14.4.3",
"rollup": "^3.29.5",
"bs58": "^6.0.0",
"@solana/sysvars": "^3.0.3"
},
"peerDependencyRules": {
"allowedVersions": {
"@stellar/stellar-sdk": "14",
"rollup": "3",
"react": "18",
"@types/react": "18"
},
"ignoreMissing": [
"react-native"
]
}
},
"packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
}