-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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
{
"name": "walrus-clip-monorepo",
"description": "Experience Sui Wallet Standard with zkLogin, customizable with your DApp's unique name and icon.",
"keywords": [
"sui",
"zklogin",
"wallrus",
"wallet",
"wallet standard",
"customizable"
],
"author": "daoauth",
"license": "ISC",
"scripts": {
"test": "cd packages/walrus-sign && npm run test",
"lint": "eslint 'packages/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write 'packages/**/*.{js,jsx,ts,tsx,json,css,md}'",
"dev:clip": "cd packages/clip && npm run dev",
"dev:demo": "cd packages/demo && npm run dev",
"build:sign": "cd packages/walrus-sign && npm run build",
"build:wallet": "cd packages/walrus-wallet && npm run build",
"build": "npm run build:sign && npm run build:wallet",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor"
},
"workspaces": [
"packages/walrus-wallet",
"packages/walrus-sign",
"packages/clip",
"packages/demo"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"typescript-eslint": "^8.21.0"
}
}