-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 899 Bytes
/
package.json
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
{
"name": "seqproto-schemify",
"version": "0.1.0",
"description": "Generate seqproto code from json schema",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest",
"format": "biome format ./src ./test",
"format:fix": "pnpm run format --write",
"sort": "biome check --apply-unsafe ./src ./test",
"lint": "biome lint ./src ./test",
"lint:fix": "biome check --apply ./src ./test",
"build": "tsup"
},
"exports": {
"./*": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"keywords": [
"seqproto",
"orama"
],
"author": "Matteo Pietro Dazzi",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/json-schema": "^7.0.15",
"seqproto": "^0.2.3",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}