-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.93 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
{
"name": "ts-data-objects",
"version": "1.1.0",
"license": "MIT",
"description": "Simple lightweight library for enhancing plain JS objects with TypeScript wrappers enabling easy API data assertion and validation",
"homepage": "https://salmon42.github.io/ts-data-objects",
"repository": {
"type": "git",
"url": "git+https://github.com/Salmon42/ts-data-objects.git"
},
"author": {
"name": "Andrej Hučko",
"email": "hucko.dev@gmail.com",
"url": "https://github.com/Salmon42"
},
"keywords": [
"typescript",
"json",
"schema",
"validation",
"parsing",
"assertion",
"type",
"inference",
"data-object",
"data-model",
"api-types"
],
"type": "module",
"exports": {
".": "./main.js",
"./common": "./common.js",
"./core": "./core.js",
"./deep": "./deep.js"
},
"types": "main.d.ts",
"scripts": {
"all": "yarn clean && yarn build && yarn doc && yarn deploy",
"build": "tsc && vite build",
"clean": "tsx scripts/clean.ts",
"dev": "vite",
"deploy": "tsx scripts/deploy.ts",
"doc": "tsx scripts/doc.ts",
"lint": "eslint .",
"test": "vitest unit",
"test:perf": "vitest perf"
},
"dependencies": {},
"devDependencies": {
"@stylistic/eslint-plugin": "1.7.0",
"@types/eslint": "8.56.9",
"@types/jsdom": "21.1.6",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"eslint": "8.57.0",
"jsdom": "24.0.0",
"node-pretty-logger": "1.0.5",
"tsx": "4.19.2",
"typedoc": "0.25.13",
"typedoc-plugin-coverage": "3.1.0",
"typedoc-plugin-extras": "3.0.0",
"typedoc-plugin-inline-sources": "1.0.2",
"typedoc-plugin-mdn-links": "3.1.21",
"typedoc-plugin-particles": "1.4.0",
"typescript": "5.4.5",
"vite": "5.2.0",
"vite-plugin-dts": "3.8.1",
"vite-plugin-eslint": "1.8.1",
"vitest": "1.5.0"
},
"peerDependencies": {}
}