-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.34 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.34 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
{
"name": "@duplojs/data-parser-tools",
"version": "0.0.0",
"license": "MIT",
"author": "duplojs",
"contributors": [
{
"name": "zeriix",
"url": "https://github.com/zeriix"
},
{
"name": "mathcovax",
"url": "https://github.com/mathcovax"
}
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/duplojs/data-parser-tools.git"
},
"scripts": {
"build": "rollup --config",
"test:tu": "vitest --coverage",
"test:tu:bench": "vitest bench",
"test:tu:watch": "vitest --coverage --watch",
"test:tu:update": "vitest --coverage --update",
"test:types": "tsc -p tsconfig.test.json && npm -w 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"
},
"./toTypescript": {
"import": "./dist/toTypescript/index.mjs",
"require": "./dist/toTypescript/index.cjs",
"types": "./dist/toTypescript/index.d.ts"
},
"./toJsonSchema": {
"import": "./dist/toJsonSchema/index.mjs",
"require": "./dist/toJsonSchema/index.cjs",
"types": "./dist/toJsonSchema/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@duplojs/eslint": "0.5.0",
"@rollup/plugin-typescript": "12.1.4",
"@types/node": "24.3.0",
"@vitest/coverage-istanbul": "3.2.4",
"eslint": "9.34.0",
"husky": "9.1.7",
"rollup": "4.50.0",
"rollup-plugin-delete": "3.0.1",
"rollup-plugin-esbuild": "6.2.1",
"rollup-plugin-tsc-alias": "1.1.4",
"tslib": "2.8.1",
"tsx": "4.20.5",
"typescript": "5.9.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"peerDependencies": {
"@duplojs/utils": ">=1.5.12 <2.0.0",
"@duplojs/server-utils": ">=0.1.4 < 1.0.0"
},
"dependencies": {
"typescript": "5.9.2"
},
"workspaces": [
"integration",
"docs"
],
"keywords": [
"duplojs",
"data-parser",
"tools",
"data-parser-to-typescript",
"dp2ts",
"data-parser-to-json-schema",
"dp2json"
],
"engines": {
"node": ">=22.15.1"
}
}