-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 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
{
"name": "@metamask/delegation-deployments",
"version": "0.12.0",
"description": "A history of deployments of the Delegation Framework",
"license": "(MIT-0 OR Apache-2.0)",
"keywords": [
"MetaMask",
"Ethereum"
],
"homepage": "https://github.com/metamask/delegation-toolkit/tree/main/packages/delegation-deployments#readme",
"bugs": {
"url": "https://github.com/metamask/delegation-toolkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/metamask/delegation-toolkit.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"dist/"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"engines": {
"node": "^18.18 || >=20"
},
"sideEffects": false,
"scripts": {
"build": "yarn typecheck && tsup",
"typecheck": "tsc --noEmit",
"changelog:update": "../../scripts/update-changelog.sh @metamask/delegation-deployments",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/delegation-deployments",
"validate-latest-contracts": "npx tsx script/validate-contract-deployments.ts"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@metamask/auto-changelog": "^3.4.4",
"compare-versions": "^6.1.1",
"tsup": "^7.2.0",
"typescript": "5.0.4"
}
}