-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.26 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
{
"name": "@utexo/rgb-sdk-web",
"version": "1.0.0",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@playwright/test": "^1.61.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.17.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.5",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vite": "^6.4.3",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.6.0"
},
"type": "module",
"scripts": {
"prettier": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"dev": "tsc -w",
"build": "tsup",
"test": "npm run build && NODE_OPTIONS='--experimental-vm-modules' jest",
"test:e2e": "npm run build && playwright test --config tests/e2e/playwright.config.ts",
"test:watch": "npm run build && NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "npm run build && NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"version:patch": "npm version patch && git push && git push --tags && npm publish --access public",
"version:minor": "npm version minor && git push && git push --tags && npm publish --access public",
"version:major": "npm version major && git push && git push --tags && npm publish --access public"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"dependencies": {
"@bitcoindevkit/bdk-wallet-web": "^0.2.0",
"@noble/hashes": "^2.0.1",
"@scure/btc-signer": "^2.0.1",
"@utexo/rgb-sdk-core": "1.0.0-beta.5",
"@utexo/rln-wasm": "0.10.0-beta.3",
"bitcoinjs-lib": "^6.1.7"
},
"keywords": [
"rgb",
"rgb-protocol",
"bitcoin",
"sdk",
"bdk",
"wasm",
"taproot",
"assets",
"blockchain"
],
"license": "MIT",
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}