This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
{
"name": "@duplojs/core",
"version": "0.0.0",
"author": "mathcovax",
"license": "MIT",
"type": "module",
"repository": "https://github.com/duplojs/core",
"scripts": {
"build": "rollup --config && tsc-alias -p tsconfig.build.json && npm run build:globals",
"build:globals": "tsx bin/generateGlobalTypes.ts",
"test:tu": "vitest --coverage",
"test:tu:watch": "vitest --coverage --watch",
"test:tu:update": "vitest --coverage --update",
"test:types": "npm run test:types:scripts && npm run test:types:override && npm run integration:test:types",
"test:types:scripts": "tsc",
"test:types:override": "sh test/overridesTypes/testOverrideTypes.sh",
"integration:test:types": "npm -w test/integration run test:types",
"test:lint": "eslint",
"test:lint:fix": "eslint --fix",
"prepare": "husky"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./globals": {
"types": "./dist/globalThis.d.ts"
}
},
"files": [
"dist",
"README.md",
"globals.d.ts"
],
"workspaces": [
"test/integration"
],
"peerDependencies": {
"zod": ">=3.23.8 <4.0.0"
},
"dependencies": {
"@duplojs/utils": "0.3.1",
"@duplojs/zod-accelerator": "2.6.2",
"mime": "4.0.4"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.2.2",
"@duplojs/eslint": "0.4.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "22.1.0",
"@vitest/coverage-istanbul": "3.0.5",
"eslint": "9.20.0",
"husky": "9.1.7",
"rollup": "^4.24.0",
"rollup-plugin-esbuild": "6.1.1",
"tsc-alias": "^1.8.10",
"tslib": "^2.6.3",
"tsx": "^4.19.1",
"typescript": "5.7.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "3.0.5"
},
"keywords": []
}