-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2 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.json",
"version": "4.1.0",
"description": "A JSON decoding library for Typescript",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/src/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/types/src/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist/"
],
"sideEffects": false,
"scripts": {
"build": "vite build",
"test:watch": "vitest",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"format": "prettier ./src --write && prettier ./assets/documents --write",
"format:check": "prettier ./src --check && prettier ./assets/documents --check",
"prebeta": "npm run test && npm run lint",
"beta": "npm whoami && npm run build && npm publish --tag beta",
"docs": "typedoc",
"postdocs": "mkdir -p docs/latest/media && cp assets/media/github-mark.png docs/latest/media/ && cp assets/media/github-mark-white.png docs/latest/media/"
},
"keywords": [
"json",
"decoder",
"codec",
"validate",
"parse"
],
"author": "Joan Llenas Masó <joan.llenas.maso@gmail.com>",
"contributors": [
{
"name": "Daniel van den Eijkel"
}
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/joanllenas/ts.data.json.git"
},
"bugs": {
"url": "https://github.com/joanllenas/ts.data.json/issues"
},
"homepage": "https://github.com/joanllenas/ts.data.json#readme",
"devDependencies": {
"@standard-schema/spec": "^1.0.0",
"@types/node": "^25.9.2",
"@vitest/coverage-v8": "~4.1.8",
"eslint": "~10.4.1",
"prettier": "~3.8.4",
"typedoc": "~0.28.19",
"typescript": "~6.0.3",
"typescript-eslint": "~8.60.1",
"vite": "~8.0.16",
"vite-plugin-dts": "~5.0.2",
"vitest": "~4.1.8"
}
}