-
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) · 1.46 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.46 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": "@dusk/connect",
"version": "0.1.0",
"description": "Dusk Connect: lightweight SDK + optional connect UI for integrating the Dusk Wallet injected provider into dApps.",
"author": "Dusk Network",
"license": "MIT",
"type": "module",
"sideEffects": false,
"keywords": [
"dusk",
"wallet",
"dapp",
"provider",
"connect",
"eip-1193",
"web3"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dusk-network/connect.git"
},
"homepage": "https://github.com/dusk-network/connect",
"bugs": {
"url": "https://github.com/dusk-network/connect/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.js"
},
"./ui": {
"types": "./dist/ui.d.ts",
"import": "./dist/ui.js"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "vitest",
"test:watch": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"ci": "npm run build && npm run test:coverage",
"prepack": "npm run build"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
"jsdom": "^29.0.2",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}