-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.97 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.97 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
{
"name": "@tuwaio/satellite-connect-monorepo",
"version": "0.0.1",
"private": true,
"author": "Oleksandr Tkach",
"license": "Apache-2.0",
"packageManager": "pnpm@10.33.2",
"description": "Monorepo for the Satellite Connect, the headless state management system for connect Web3 wallets in the TUWA ecosystem.",
"scripts": {
"build": "pnpm --filter \"./packages/**\" build",
"postinstall": "pnpm build",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"test": "pnpm --filter \"./packages/**\" test",
"clean": "find . -name node_modules -type d -prune -exec rm -rf '{}' + && find . -name dist -type d -prune -exec rm -rf '{}' + && rm -rf .turbo",
"docs:gen": "typedoc",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TuwaIO/satellite-connect.git"
},
"homepage": "https://github.com/TuwaIO/satellite-connect",
"bugs": {
"url": "https://github.com/TuwaIO/satellite-connect/issues"
},
"contributors": [
{
"name": "Oleksandr Tkach",
"url": "https://github.com/Argeare5"
}
],
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"typescript": "6.x"
}
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/release-notes-generator": "^14.1.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"semantic-release": "^25.0.3",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-plugin-react": "^0.1.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
}
}