-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.67 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.67 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vechain-kit",
"private": true,
"description": "All-in-one React library for building VeChain applications with wallet integration, social logins, developer hooks, and pre-built UI components.",
"license": "MIT",
"workspaces": [
"examples/*",
"!examples/test-tailwind-vck",
"packages/*",
"lambda"
],
"keywords": [
"vechain",
"vechain-kit",
"social",
"login",
"wallet",
"cross-app",
"ecosystem",
"privy",
"veworld",
"sync2",
"walletconnect",
"embedded-wallet",
"smart-account"
],
"scripts": {
"install:all": "yarn && yarn run build:deps",
"build": "turbo run build",
"build-react-kit": "turbo run build --filter='@vechain/dapp-kit-react'",
"build:deps": "turbo build --no-daemon --filter='@vechain/*'",
"prepare:release": "ts-node scripts/prepare-packages.ts",
"publish:release": "ts-node scripts/publish-packages.ts",
"clean": "rm -rf .turbo .parcel-cache .reports build && npx turbo@latest run clean",
"dev": "turbo run dev --filter='@vechain/*'",
"gh-pages-build": "turbo run gh-pages-build",
"lint": "turbo run lint",
"prepare": "husky install",
"preview": "turbo run preview",
"purge": "npx turbo@latest run purge && rm -rf node_modules",
"reinstall": "yarn clean && yarn purge && yarn && yarn run build:deps",
"stop-preview": "kill -2 $(ps aux | grep '[t]urbo run preview' | awk '{print $2}')",
"kit:build": "yarn workspace @vechain/vechain-kit build",
"kit:typecheck": "yarn workspace @vechain/vechain-kit typecheck",
"contracts:compile": "yarn workspace @vechain/contracts compile",
"contracts:test": "yarn workspace @vechain/contracts test",
"dev:homepage": "yarn workspace @vechain/vechain-kit watch & yarn workspace vechain-kit-homepage dev",
"dev:homepage:build": "yarn workspace @vechain/vechain-kit build & yarn workspace vechain-kit-homepage build",
"dev:next-template": "yarn workspace @vechain/vechain-kit watch & yarn workspace next-template dev",
"dev:next-template:build": "yarn workspace @vechain/vechain-kit build & yarn workspace next-template build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "^18.0.0",
"@vechain/sdk-core": "2.0.7",
"@vechain/sdk-network": "2.0.7",
"commitlint": "^18.0.0",
"eslint": "^9.12.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"prettier": "^2.5.1",
"ts-node": "^10.9.2",
"turbo": "latest",
"typescript": "4.9.5",
"typescript-eslint": "^8.11.0"
},
"packageManager": "yarn@4.5.1",
"resolutions": {
"ansi-regex": "5.0.1",
"ansi-styles": "4.3.0",
"chalk": "4.1.2",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"color-string": "1.9.1",
"debug": "4.3.4",
"error-ex": "1.3.2",
"is-arrayish": "0.3.2",
"simple-swizzle": "0.2.2",
"slice-ansi": "4.0.0",
"strip-ansi": "6.0.1",
"supports-color": "7.2.0",
"wrap-ansi": "7.0.0",
"elliptic": "6.6.1",
"es-toolkit": "1.39.4",
"next": "15.5.9",
"preact": "10.27.3",
"h3": "1.15.5"
}
}