-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@ezkljs/hub",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
"description": "The EZKL library is a set of tools to make integrating the [EZKL](https://github.com/zkonduit/ezkl) engine into your application easier than ever.",
"main": "dist/bundle.cjs",
"module": "dist/bundle.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"cln:w": "watchman watch-del '/Users/casey/Dev/ezkl-work/ezkljs' ; watchman watch-project '/Users/casey/Dev/ezkl-work/ezkljs'",
"test:w": "jest --config jest.config.ts --watch",
"test": "jest --config jest.config.ts",
"clean": "rm -r dist || true",
"bundle": "webpack --config webpack.config.js --mode production",
"post-bundle": "node postBundle.cjs",
"build": "pnpm bundle && pnpm post-bundle",
"build-and-test": "pnpm run clean && pnpm run build && pnpm run test",
"dev": "tsc --watch",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"keywords": [],
"author": "Jason Morton",
"license": "Apache-2.0",
"devDependencies": {
"@jest/types": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/json-bigint": "^1.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-react": "^7.33.1",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"resolve-tspaths": "^0.8.14",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"json-bigint": "^1.0.0",
"zod": "^3.21.4"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkonduit/ezkljs.git"
},
"bugs": {
"url": "https://github.com/zkonduit/ezkljs/issues"
},
"homepage": "https://github.com/zkonduit/ezkljs#readme"
}