@penumbrafi/registry 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +366 -0
- package/dist/index.d.ts +152 -0
- package/dist/index.js +5 -0
- package/dist/index.mjs +12846 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@penumbrafi/registry",
|
|
3
|
+
"version": "13.0.0",
|
|
4
|
+
"description": "Chain and asset registry for Penumbra",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/penumbrafi/registry.git",
|
|
8
|
+
"directory": "npm"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT OR Apache-2.0",
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"module": "./dist/index.mjs",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"format": "prettier . --write",
|
|
19
|
+
"format-check": "prettier --check .",
|
|
20
|
+
"lint": "eslint . --max-warnings=0",
|
|
21
|
+
"build": "pnpm clean && tsc && vite build",
|
|
22
|
+
"clean": "rm -rfv dist",
|
|
23
|
+
"changeset": "changeset",
|
|
24
|
+
"changeset:publish": "changeset publish",
|
|
25
|
+
"test": "vitest run"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@bufbuild/protobuf": "^1.10.0",
|
|
29
|
+
"@changesets/cli": "^2.27.9",
|
|
30
|
+
"@eslint/eslintrc": "^3.1.0",
|
|
31
|
+
"@eslint/js": "^9.13.0",
|
|
32
|
+
"@penumbra-zone/protobuf": "^7.1.0",
|
|
33
|
+
"eslint": "^9.13.0",
|
|
34
|
+
"fetch-mock": "^12.0.2",
|
|
35
|
+
"prettier": "^3.3.3",
|
|
36
|
+
"tsup": "^8.3.5",
|
|
37
|
+
"typescript": "^5.6.3",
|
|
38
|
+
"typescript-eslint": "^8.12.2",
|
|
39
|
+
"vite": "^5.4.10",
|
|
40
|
+
"vite-plugin-dts": "^4.3.0",
|
|
41
|
+
"vitest": "^2.1.4"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist",
|
|
45
|
+
"CHANGELOG.md"
|
|
46
|
+
],
|
|
47
|
+
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af"
|
|
48
|
+
}
|