-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "kanun",
"version": "1.0.10",
"description": "Framework-agnostic TypeScript-first validation library.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"homepage": "https://arkstack-hq.github.io/kanun",
"repository": {
"type": "git",
"url": "git+https://github.com/arkstack-hq/kanun.git",
"directory": "packages/validation"
},
"keywords": [
"arkstack",
"modern",
"web",
"Arkstack",
"framework",
"nodejs",
"typescript",
"laravel",
"validation",
"validator",
"requests",
"api",
"builder"
],
"scripts": {
"lint": "eslint",
"test": "vitest",
"test:browser": "vitest --project browser",
"test:file-plugin": "vitest --watch=false tests/file-plugin-validator.test.ts",
"test:coverage": "vitest --coverage --watch=false",
"build": "tsdown",
"build:workspace": "pnpm --filter './packages/*' build",
"lint:workspace": "pnpm --filter './packages/*' lint",
"test:workspace": "pnpm vitest --watch=false",
"barrel": "barrelize",
"prepublishOnly": "pnpm build && pnpm vitest --watch=false",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"publish:packages": "pnpm publish --filter './packages/*' --access public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fastify/multipart": "^9.4.0",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "4.0.18",
"axios": "^1.13.6",
"barrelize": "^1.7.4",
"eslint": "^10.0.2",
"express": "^5.2.1",
"fastify": "^5.8.2",
"h3": "2.0.1-rc.16",
"happy-dom": "^20.8.4",
"hono": "^4.12.8",
"multer": "^2.1.1",
"tsdown": "0.21.0-beta.2",
"typescript": "^5.4.0",
"typescript-eslint": "^8.56.1",
"vite-tsconfig-paths": "^6.1.1",
"vitepress": "2.0.0-alpha.16",
"vitest": "^4.0.18"
},
"dependencies": {
"dayjs": "^1.11.20"
}
}