-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "@gitcoin/utils",
"version": "1.0.0-next.1",
"repository": {
"type": "git",
"url": "https://github.com/gitcoinco/core",
"directory": "packages/utils"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"sideEffects": false,
"license": "AGPL-3.0",
"files": [
"dist/**"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.mjs"
},
"./checker": {
"types": "./dist/checker/index.d.mts",
"import": "./dist/checker/index.mjs",
"require": "./dist/checker/index.mjs"
}
},
"scripts": {
"build": "tsup src/index.ts src/checker/index.ts --format esm --dts --external react",
"dev": "tsup src/index.ts src/checker/index.ts --format esm --watch --dts --external react",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@gitcoin/config": "workspace:*",
"@gitcoin/types": "workspace:*",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"tsup": "^8.0.2",
"typescript": "5.5.4"
},
"dependencies": {
"@gitcoin/gitcoin-chain-data": "^1.0.43",
"clsx": "^2.1.1",
"moment": "^2.30.1",
"react": "18.3.1",
"tailwind-merge": "^2.5.4",
"viem": "^2.21.48"
},
"publishConfig": {
"access": "public"
}
}