-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (35 loc) · 754 Bytes
/
package.json
File metadata and controls
36 lines (35 loc) · 754 Bytes
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
{
"name": "typha",
"version": "1.0.1",
"description": "Parse JSON strings to typed objects using schemas",
"main": "dist/index.js",
"module": "dist/index.js",
"type":"module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "vitest"
},
"keywords": [
"typescript",
"json",
"schema",
"parser",
"typed"
],
"author": "raulmaciasdev",
"license": "MIT",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raulmaciasdev/typha.git"
},
"homepage": "https://github.com/raulmaciasdev/typha#readme"
}