-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 938 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
{
"name": "zuauth",
"version": "0.4.0",
"license": "GPL-3.0-or-later",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./src/*",
"./dist/*",
"./README.md",
"./LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --dts",
"dev": "tsup src/index.ts --watch",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@pcd/eddsa-ticket-pcd": "^0.3.0",
"@pcd/pcd-types": "^0.8.0",
"@pcd/semaphore-identity-pcd": "^0.8.0",
"@pcd/zk-eddsa-event-ticket-pcd": "^0.2.1",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"tsup": "^7.2.0",
"typescript": "^5"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.0.1"
}