-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "@evmexplorer/climate",
"version": "0.0.3",
"description": "EVM Explorer Climate SDK",
"main": "dist/index.js",
"homepage": "https://github.com/Pfed-prog/EVMExplorer-Climate",
"scripts": {
"build": "tsup",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "tsc",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"test": "vitest run",
"dev": "vitest"
},
"keywords": [
"evmexplorer",
"climate",
"ethereum",
"web3",
"sustainability",
"bitcoin",
"carbon-emissions",
"carbon-footprint",
"cryptocurrency",
"dovu",
"dogecoin"
],
"author": "Pavel Fedotov",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@changesets/cli": "2.29.4",
"@types/node": "22.15.29",
"dotenv": "^16.4.7",
"prettier": "3.5.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"viem": "2.30.6",
"vitest": "3.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pfed-prog/EVMExplorer-Climate.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/Pfed-prog/EVMExplorer-Climate/issues"
},
"dependencies": {}
}