-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.15 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.15 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
{
"name": "@iota/dapp-kit",
"author": "IOTA Foundation <info@iota.org>",
"description": "A collection of React hooks and components for interacting with the IOTA blockchain and wallets.",
"homepage": "https://docs.iota.org/developer/ts-sdk/dapp-kit/",
"repository": "https://github.com/iotaledger/ts-packages",
"version": "0.10.1",
"license": "Apache-2.0",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"src"
],
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/index.css": {
"import": "./dist/esm/index.css",
"require": "./dist/cjs/index.css"
}
},
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"build": "build-dapp-kit",
"test": "pnpm test:typecheck && pnpm vitest run",
"test:typecheck": "tsc -b ./test",
"size": "size-limit",
"analyze": "size-limit --why",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix"
},
"bugs": {
"url": "https://github.com/iotaledger/ts-packages/issues/new"
},
"size-limit": [
{
"path": "dist/esm/index.js",
"limit": "100 KB"
},
{
"path": "dist/cjs/index.js",
"limit": "100 KB"
}
],
"devDependencies": {
"@iota/build-scripts": "workspace:*",
"@size-limit/preset-small-lib": "^11.1.4",
"@tanstack/react-query": "^5.50.1",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@vanilla-extract/vite-plugin": "^5.2.1",
"dotenv": "^16.4.5",
"react": "^18.3.1",
"size-limit": "^11.1.4",
"typescript": "^5.5.3",
"vitest": "^4.1.0"
},
"dependencies": {
"@iota/iota-names-sdk": "workspace:^",
"@iota/iota-sdk": "workspace:*",
"@iota/wallet-standard": "workspace:*",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@vanilla-extract/css": "^1.15.3",
"@vanilla-extract/dynamic": "^2.1.1",
"@vanilla-extract/recipes": "^0.5.3",
"clsx": "^2.1.1",
"zustand": "^4.4.1"
},
"peerDependencies": {
"@tanstack/react-query": "^5.50.1",
"react": "*"
},
"sideEffects": [
"*.css.ts",
"*.css"
]
}