-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.69 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.69 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
{
"name": "@substrate-system/webauthn-keys",
"version": "0.1.8",
"description": "Use ECC keys with the webauthn API",
"type": "module",
"directories": {
"doc": "docs",
"example": "example"
},
"main": "dist/index.js",
"files": [
"./dist/*"
],
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint \"./**/*.{ts,js}\"",
"test": "vitest",
"test:ci": "vitest --run",
"build-types": "tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
"build-example": "mkdir -p ./public && rm -rf ./public/* && VITE_DEBUG_MODE=staging vite --mode staging --base=\"/webauthn-keys\" build",
"build-docs": "typedoc ./src/index.ts",
"build": "mkdir -p ./dist && rm -rf ./dist/* && esbuild ./build.ts | node --input-type=module",
"start": "vite",
"preversion": "npm run lint",
"toc": "markdown-toc --maxdepth 3 -i README.md",
"version": "npm run toc && auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md README.md",
"postversion": "git push --follow-tags && npm publish",
"prepublishOnly": "npm run build"
},
"exports": {
".": "./dist/index.js",
"./types": "./dist/types.js",
"./util": "./dist/util.js",
"./min": "./dist/index.min.js",
"./*": [
"./dist/*.js",
"./dist/*"
]
},
"dependencies": {
"@substrate-system/asn1": "^0.0.10",
"cborg": "^4.2.3",
"idb-keyval": "^6.2.1",
"libsodium": "^0.8.1",
"libsodium-wrappers": "^0.8.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"@preact/signals": "^2.0.1",
"@substrate-system/css-normalize": "^0.0.13",
"@substrate-system/debug": "^0.9.30",
"@substrate-system/util": "^0.1.21",
"@types/libsodium-wrappers": "^0.8.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"auto-changelog": "^2.4.0",
"esbuild": "^0.28.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"globby": "^16.0.0",
"htm": "^3.1.1",
"jsdom": "^28.0.0",
"markdown-toc": "^1.2.0",
"npm-run-all": "^4.1.5",
"postcss-nesting": "^14.0.0",
"preact": "^10.25.4",
"typedoc": "^0.28.1",
"typescript": "^6.0.2",
"vite": "^8.0.0",
"vitest": "^4.0.1"
},
"author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/substrate-system/webauthn-keys.git"
},
"keywords": [
"webauthn",
"keys",
"crypto"
],
"bugs": {
"url": "https://github.com/substrate-system/webauthn-keys/issues"
},
"homepage": "https://github.com/substrate-system/webauthn-keys",
"license": "SEE LICENSE IN LICENSE"
}