-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.9 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.9 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
{
"name": "@projectlibertylabs/siwf-embedded-wallet-sdk",
"version": "0.0.0",
"description": "SIWF SDK for Embedded Wallets",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs && node scripts/package.cjs",
"build:types": "tsc -p ./tsconfig.types.json",
"build:cjs": "npx tsup-node",
"build:esm": "tsc -p ./tsconfig.esm.json",
"clean": "rm -Rf dist",
"test": "vitest run",
"test:quiet": "vitest run --silent",
"format": "tsc -p ./tsconfig.eslint.json --noEmit --pretty && npm run prettier && npm run lint:fix",
"prettier": "npx prettier --write src",
"lint": "tsc -p ./tsconfig.eslint.json --noEmit --pretty && npx eslint src",
"lint:fix": "npx eslint --fix src",
"lint:ci": "npx eslint src && npx prettier --check src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectLibertyLabs/siwf-embedded-wallet-sdk.git",
"path": "/"
},
"author": "Project Liberty LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ProjectLibertyLabs/siwf-embedded-wallet-sdk/issues"
},
"homepage": "https://github.com/ProjectLibertyLabs/siwf-embedded-wallet-sdk#readme",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.30.1",
"prettier": "3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"viem": "^2.31.7",
"vite": "^7.0.0",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.44.1"
},
"dependencies": {
"@frequency-chain/ethereum-utils": "1.17.2",
"@frequency-chain/recovery-sdk": "1.17.2",
"@noble/hashes": "^1.8.0",
"@polkadot/util": "13.5.3",
"@projectlibertylabs/siwf": "2.3.4",
"tweetnacl": "^1.0.3",
"uuid": "^11.1.0"
}
}