-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.66 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.66 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
{
"name": "@metamask/multichain-api-client",
"version": "0.11.0",
"license": "ISC",
"description": "MetaMask Multichain Api Client",
"homepage": "https://github.com/MetaMask/multichain-api-client#readme",
"bugs": {
"url": "https://github.com/MetaMask/multichain-api-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/multichain-api-client.git"
},
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "ts-bridge --project tsconfig.build.json --clean",
"build:docs": "typedoc",
"format": "biome format",
"format:fix": "biome format --write",
"lint": "yarn lint:biome && yarn format && yarn lint:constraints && yarn lint:dependencies --check && yarn lint:changelog",
"lint:changelog": "auto-changelog validate --prettier",
"lint:constraints": "yarn constraints",
"lint:dependencies": "depcheck && yarn dedupe",
"lint:biome": "biome check",
"lint:fix": "yarn lint:biome --fix && yarn format:fix && yarn lint:constraints --fix && yarn lint:dependencies && yarn lint:changelog",
"prepack": "./scripts/prepack.sh",
"test": "vitest && attw --pack && yarn test:types",
"test:types": "tsd --files ./tests/index.test-d.ts",
"test:watch": "vitest --watch"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.4",
"@biomejs/biome": "1.9.4",
"@lavamoat/allow-scripts": "^3.0.4",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@metamask/auto-changelog": "^5.0.2",
"@ts-bridge/cli": "^0.6.3",
"@types/chrome": "^0.0.307",
"@vitest/coverage-istanbul": "^3.0.7",
"@vitest/eslint-plugin": "^1.1.4",
"@yarnpkg/types": "^4.0.0-rc.52",
"depcheck": "^1.4.3",
"prettier": "^3.5.3",
"ts-node": "^10.7.0",
"tsd": "^0.31.2",
"typedoc": "^0.26.11",
"typescript": "~5.7.3",
"vite": "^6.2.5",
"vitest": "^3.0.7"
},
"packageManager": "yarn@4.1.1",
"engines": {
"node": "^18.20 || ^20.17 || >=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"vite>esbuild": false,
"@biomejs/biome": false,
"vitest>vite-node>vite>esbuild": false,
"vitest>vite>esbuild": false
}
}
}