Skip to content

Commit 7b497bf

Browse files
committed
feat: port a few type factories
1 parent 8469569 commit 7b497bf

File tree

17 files changed

+9410
-0
lines changed

17 files changed

+9410
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ specification](https://avro.apache.org/docs/current/spec.html).
1212
* [ ] Add `avsc` shim
1313
* [ ] Add benchmark
1414
* [ ] Update README
15+
* [ ] Update metadata in all package.json
1516
* [ ] Add migration guide

packages/types/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "@avro/types",
3+
"version": "0.0.0",
4+
"repository": "github:mtth/avsc",
5+
"description": "Avro serialization for JavaScript",
6+
"homepage": "https://github.com/mtth/avsc",
7+
"author": "Matthieu Monsch <mtth@apache.org>",
8+
"license": "MIT",
9+
"type": "module",
10+
"files": [
11+
"lib/"
12+
],
13+
"exports": "./lib/index.js",
14+
"scripts": {
15+
"build": "tsc -b src test",
16+
"clean": "rm -rf lib node_modules out",
17+
"fix": "prettier --write",
18+
"prepare": "pnpm run build",
19+
"test": "vitest",
20+
"watch": "tsc -b -w src test"
21+
}
22+
}
23+

0 commit comments

Comments
 (0)