-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "hooks-schema",
"version": "0.1.3",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": ["dist", "schema"],
"scripts": {
"dev": "tsx samples/index.ts",
"build": "tsup",
"generate": "tsx samples/generate.ts",
"generate:schema": "quicktype schema/generate.ts -o schema.json --lang schema && biome format --write schema.json",
"lint": "biome lint --apply .",
"format": "biome format --write .",
"prepublish": "pnpm run build"
},
"keywords": [],
"author": "tequ <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/tequdev/hooks-schema.git"
},
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@transia/hooks-toolkit": "^1.0.11",
"@transia/xrpl": "2.7.3-alpha.22",
"quicktype": "^23.0.81",
"tsup": "^8.0.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"tsup": {
"entry": ["schema/index.ts"],
"format": ["cjs", "esm"],
"dts": true,
"sourcemap": true
}
}