This repository was archived by the owner on Feb 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.51 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.51 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
{
"name": "embedded-signer",
"version": "0.0.0",
"description": "Embedded signer infrastructure library",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"lint": "pnpm run lint:eslint && pnpm run lint:forbidden",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.ts\" --max-warnings 0",
"lint:forbidden": "node scripts/check-no-todo.mjs",
"prebuild": "pnpm run clean",
"example": "tsx examples/minimal.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"keywords": [
"embedded",
"signer",
"identity",
"crypto"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.17.0",
"dependencies": {
"@noble/hashes": "^1.4.0",
"argon2-browser": "^1.18.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@noble/secp256k1": "^1.7.1",
"@types/node": "^22.10.4",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"fake-indexeddb": "^6.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.2"
}
}