-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.39 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@owlprotocol/tutorials",
"version": "3.0.0",
"keywords": [
"web3",
"solidity",
"trpc",
"react-query"
],
"private": true,
"type": "module",
"homepage": "https://owlprotocol.github.io/tutorials",
"repository": {
"type": "git",
"url": "https://github.com/owlprotocol/owlprotocol.git"
},
"copyright": "Copyright 2023 Owl Protocol",
"license": "MIT",
"author": {
"name": "Leo Vigna",
"email": "[email protected]",
"url": "https://github.com/leovigna"
},
"files": [
"dist/*",
"lib/*",
"src/*",
"LICENSE",
"README.md"
],
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
},
"scripts": {
"build": "npm-run-all -p tsc esbuild",
"build:watch": "npm-run-all -p tsc:watch esbuild:watch",
"clean": "rimraf lib dist",
"depcheck": "depcheck",
"esbuild": "node esbuild.config.mjs",
"esbuild:watch": "ESBUILD_WATCH=true node esbuild.config.mjs",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"lint:staged": "lint-staged",
"tsc": "tsc",
"tsc:trace": "tsc --generateTrace lib/trace && analyze-trace lib/trace",
"tsc:watch": "tsc -w"
},
"dependencies": {
"@owlprotocol/contracts-diamond": "^3.0.0",
"@owlprotocol/contracts-algebra-integral": "^3.0.0",
"@owlprotocol/chains": "^3.0.0",
"@owlprotocol/core-trpc": "^3.0.0",
"@owlprotocol/clients": "^3.0.0",
"@owlprotocol/viem-utils": "^3.0.0",
"dotenv": "^16.4.5",
"permissionless": "0.2.6",
"viem": "2.21.19"
},
"devDependencies": {
"@owlprotocol/esbuild-config": "^3.0.0",
"@owlprotocol/eslint-config": "^3.0.0",
"@owlprotocol/prettier-config": "^3.0.0",
"@owlprotocol/tsconfig": "^3.0.0",
"@types/node": "^20.11.10",
"@typescript/analyze-trace": "^0.10.1",
"lint-staged": "^11.2.6",
"madge": "^5.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "5.4.5",
"vite": "^5.1.6",
"vitest": "^1.4.0",
"depcheck": "^1.4.7"
},
"bugs": {
"url": "https://github.com/owlprotocol/owlprotocol/issues",
"email": "[email protected]"
},
"funding": "https://owlprotocol.xyz",
"engines": {
"node": "^18.0.0"
}
}