-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.86 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@nestm/standard-schema",
"version": "0.1.0-alpha.11",
"description": "Schema-first validation, serialization, and OpenAPI integration for NestJS using Standard Schema.",
"license": "MIT",
"author": "Kauan Guesser",
"type": "module",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./swagger": {
"types": "./dist/swagger/index.d.ts",
"import": "./dist/swagger/index.js"
},
"./plugin": {
"types": "./dist/plugin/index.d.cts",
"require": "./dist/plugin/index.cjs",
"default": "./dist/plugin/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.24.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestm-dev/standard-schema.git"
},
"homepage": "https://github.com/nestm-dev/standard-schema#readme",
"bugs": {
"url": "https://github.com/nestm-dev/standard-schema/issues"
},
"keywords": [
"nestjs",
"standard-schema",
"validation",
"serialization",
"openapi",
"schema-first",
"type-safe",
"zod",
"valibot",
"arktype"
],
"scripts": {
"build": "node scripts/clean.mjs && tsc -p tsconfig.build.json",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"lint": "oxlint src/ test/ examples/ scripts/ vitest.config.ts vitest.config.e2e.ts vitest.config.plugin.ts",
"lint:package": "publint",
"typecheck": "tsc --noEmit",
"test": "pnpm run test:unit && pnpm run test:plugin && pnpm run test:e2e && pnpm run example:test",
"test:unit": "vitest run",
"test:plugin": "pnpm run build && vitest run --config ./vitest.config.plugin.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts",
"test:packed": "pnpm run example:test",
"test:typescript7": "node scripts/test-packed-consumer.mjs --typescript-7",
"example:build": "pnpm run build && pnpm --filter @nestm/example-nest-cli-zod build",
"example:start": "pnpm run example:build && pnpm --filter @nestm/example-nest-cli-zod start",
"example:test": "node scripts/test-packed-consumer.mjs",
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck",
"verify:pack": "pnpm run build && publint --strict",
"prepack": "pnpm run build",
"changeset": "changeset",
"release": "node scripts/publish.mjs"
},
"dependencies": {
"@standard-schema/spec": "1.1.0"
},
"peerDependencies": {
"@nestjs/common": "^12.0.0",
"@nestjs/core": "^12.0.0",
"@nestjs/swagger": "^12.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typescript": ">=5.5 <8"
},
"peerDependenciesMeta": {
"@nestjs/swagger": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "3.0.1",
"@nestjs/cli": "12.0.0",
"@nestjs/common": "12.0.1",
"@nestjs/core": "12.0.1",
"@nestjs/platform-express": "12.0.1",
"@nestjs/platform-fastify": "12.0.1",
"@nestjs/schematics": "12.0.0",
"@nestjs/swagger": "12.0.0",
"@nestjs/testing": "12.0.1",
"@types/node": "26.4.0",
"@types/supertest": "7.2.1",
"@typescript/native": "npm:typescript@7.0.2",
"@vitest/coverage-v8": "4.1.11",
"oxlint": "1.80.0",
"prettier": "3.9.6",
"publint": "0.3.24",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"supertest": "7.2.2",
"typescript": "npm:@typescript/typescript6@6.0.2",
"vitest": "4.1.11",
"zod": "4.4.3"
}
}