@orkestrel/validator 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@orkestrel/validator",
3
+ "version": "0.0.1",
4
+ "description": "Runtime validation toolkit for TypeScript",
5
+ "keywords": [
6
+ "runtime-validation",
7
+ "typescript",
8
+ "validation",
9
+ "validator"
10
+ ],
11
+ "files": [
12
+ "dist",
13
+ "README.md"
14
+ ],
15
+ "type": "module",
16
+ "sideEffects": false,
17
+ "main": "./dist/index.cjs",
18
+ "module": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.js",
24
+ "require": "./dist/index.cjs"
25
+ }
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "scripts": {
31
+ "build": "npm run clean && vite build --config configs/vite.core.config.ts && tsc -p configs/tsconfig.core.json",
32
+ "check": "npm run check:types && npm run check:lint",
33
+ "check:types": "tsc --noEmit --project tsconfig.json",
34
+ "check:lint": "oxlint --config .oxlintrc.json .",
35
+ "check:fix": "oxlint --config .oxlintrc.json --fix .",
36
+ "test": "vitest run --config vite.config.ts --reporter=verbose",
37
+ "format": "oxfmt --config .oxfmtrc.json --write .",
38
+ "format:check": "oxfmt --config .oxfmtrc.json --check .",
39
+ "clean": "node -e \"try{require('node:fs').rmSync('dist',{recursive:true,force:true})}catch{}\"",
40
+ "prepublishOnly": "npm run format:check && npm run check && npm run build && npm test"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^25.5.2",
44
+ "oxfmt": "^0.43.0",
45
+ "oxlint": "^1.58.0",
46
+ "typescript": "6.0.2",
47
+ "vite": "^7.3.1",
48
+ "vitest": "^4.1.2"
49
+ }
50
+ }