-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "@auths-dev/verify",
"version": "0.3.0",
"description": "Drop-in <auths-verify> web component for decentralized commit verification",
"type": "module",
"main": "dist/auths-verify.mjs",
"types": "dist/types/auths-verify.d.ts",
"exports": {
".": {
"import": "./dist/auths-verify.mjs",
"types": "./dist/types/auths-verify.d.ts"
},
"./slim": {
"import": "./dist/slim/auths-verify.mjs",
"types": "./dist/types/auths-verify.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite --open /examples/index.html",
"build": "npm run build:full && npm run build:slim",
"build:full": "INLINE_WASM=true vite build",
"build:slim": "vite build --mode slim",
"build:wasm": "cd ../auths/crates/auths-verifier && wasm-pack build --target bundler --no-default-features --features wasm && rm -rf ../../../auths-verify-widget/wasm && mv pkg ../../../auths-verify-widget/wasm",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"test:watch": "vitest",
"prepublishOnly": "npm run build:wasm && npm run test && npm run build"
},
"keywords": [
"auths",
"web-component",
"custom-element",
"verification",
"decentralized-identity",
"wasm",
"cryptography",
"git",
"commit-signing",
"did",
"keri",
"ed25519"
],
"author": "auths-dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/auths-dev/auths-verify-widget.git"
},
"homepage": "https://github.com/auths-dev/auths-verify-widget#readme",
"bugs": {
"url": "https://github.com/auths-dev/auths-verify-widget/issues"
},
"devDependencies": {
"@auths/verifier": "file:../auths/packages/auths-verifier-ts",
"@playwright/test": "^1.58.2",
"happy-dom": "^12.10.3",
"typescript": "^5.3.2",
"vite": "^5.4.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}