-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.13 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.13 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@owlprotocol/chains",
"version": "3.1.2",
"keywords": [
"blockchain",
"web3",
"viem"
],
"private": false,
"type": "module",
"homepage": "https://github.com/owlprotocol/workspace-public",
"repository": {
"type": "git",
"url": "https://github.com/owlprotocol/workspace-public.git"
},
"copyright": "Copyright 2024 Owl Protocol",
"license": "MIT",
"author": {
"name": "Leo Vigna",
"email": "leo@owlprotocol.xyz",
"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"
},
"./chains": {
"types": "./lib/types/chains/index.d.ts",
"require": "./lib/cjs/chains/index.js",
"import": "./lib/esm/chains/index.js"
},
"./chains/*": {
"types": "./lib/types/chains/*.d.ts",
"require": "./lib/cjs/chains/*.js",
"import": "./lib/esm/chains/*.js"
},
"./currencies": {
"types": "./lib/types/currencies/index.d.ts",
"require": "./lib/cjs/currencies/index.js",
"import": "./lib/esm/currencies/index.js"
},
"./currencies/*": {
"types": "./lib/types/currencies/*.d.ts",
"require": "./lib/cjs/currencies/*.js",
"import": "./lib/esm/currencies/*.js"
}
},
"scripts": {
"build": "npm run codegen:chains && npm-run-all -p tsc esbuild",
"build:watch": "npm run codegen:chains && npm-run-all -p tsc:watch esbuild:watch",
"clean": "rimraf lib dist",
"codegen:chains": "tsx src/scripts/genChainsExport.ts",
"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",
"madge": "madge src/index.ts -c",
"test": "pnpm run test:ci",
"test:ci": "vitest --run",
"test:watch": "vitest",
"tsc": "tsc",
"tsc:trace": "tsc --generateTrace lib/trace && analyze-trace lib/trace",
"tsc:watch": "tsc -w"
},
"dependencies": {
"@owlprotocol/envvars": "workspace:*",
"@owlprotocol/eth-firebase": "workspace:*",
"viem": "2.21.19"
},
"devDependencies": {
"@owlprotocol/esbuild-config": "workspace:*",
"@owlprotocol/eslint-config": "workspace:*",
"@owlprotocol/prettier-config": "workspace:*",
"@owlprotocol/tsconfig": "workspace:*",
"@owlprotocol/utils": "workspace:*",
"@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",
"tsx": "^4.11.0",
"typescript": "5.4.5",
"vite": "^5.1.6",
"vitest": "^1.4.0",
"depcheck": "^1.4.7"
},
"bugs": {
"url": "https://github.com/owlprotocol/workspace-public/issues",
"email": "leo@owlprotocol.xyz"
},
"funding": "https://owlprotocol.xyz",
"engines": {
"node": "^18.0.0"
}
}