forked from
smokesignal.events/atproto-plc
Rust and WASM did-method-plc tools and structures
1{
2 "name": "atproto-plc",
3 "version": "0.2.0",
4 "description": "did-method-plc implementation for ATProto with WASM support",
5 "type": "module",
6 "main": "index.js",
7 "types": "index.d.ts",
8 "files": [
9 "index.js",
10 "index.d.ts",
11 "atproto_plc_bg.wasm",
12 "atproto_plc.js",
13 "atproto_plc.d.ts"
14 ],
15 "keywords": [
16 "atproto",
17 "did",
18 "plc",
19 "decentralized-identity",
20 "wasm",
21 "webassembly"
22 ],
23 "author": "Nick Gerakines <nick.gerakines@gmail.com>",
24 "license": "MIT OR Apache-2.0",
25 "repository": {
26 "type": "git",
27 "url": "https://tangled.org/@smokesignal.events/atproto-plc"
28 },
29 "scripts": {
30 "build": "wasm-pack build --target web --out-dir wasm/pkg",
31 "build:nodejs": "./build.sh",
32 "audit": "node plc-audit.js",
33 "test": "wasm-pack test --headless --chrome",
34 "test:firefox": "wasm-pack test --headless --firefox"
35 },
36 "devDependencies": {
37 "@types/node": "^20.0.0"
38 }
39}