generated from 123ishaTest/ts-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "@123ishatest/content-parser",
"version": "1.0.2",
"description": "A utility library that parses YAML files based on Zod schemas",
"homepage": "https://github.com/123ishaTest/content-parser",
"bugs": {
"email": "ishadijcks@gmail.com",
"url": "https://github.com/123ishaTest/content-parser/issues"
},
"author": "Isha",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release": "npm run build && npx changeset publish",
"preview": "vite preview",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "vitest"
},
"dependencies": {
"@types/node": "^22.7.7",
"glob": "^11.0.0",
"yaml": "^2.3.4",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^3.9.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"files": [
"/dist",
"README.md",
"package.json"
]
}