-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1018 Bytes
/
package.json
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
{
"name": "@zkmelabs/widget",
"version": "0.3.5",
"type": "module",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./verify": {
"import": "./dist/verify.js",
"require": "./dist/verify.cjs"
},
"./widget": {
"import": "./dist/widget.js",
"require": "./dist/widget.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkMeLabs/zkme-sdk-js.git",
"directory": "packages/widget"
},
"homepage": "https://github.com/zkMeLabs/zkme-sdk-js#readme",
"keywords": [
"zkme",
"zkkyc",
"anti-sybil"
],
"author": {
"name": "zkMeLabs",
"url": "https://zk.me/"
},
"license": "MIT"
}