-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 KB
/
package.json
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
{
"packageManager": "[email protected]",
"name": "@unnoen/untypedjson",
"description": "A simple JSON deserializer and serializer for Node.js and the browser using TypeScript decorators.",
"version": "2.0.0",
"type": "module",
"license": "MIT",
"author": "Unnoen",
"keywords": [
"json",
"parser",
"serializer",
"typescript",
"decorators",
"convert",
"jsonconvert",
"json-convert"
],
"homepage": "https://github.com/Unnoen/UntypedJSON",
"repository": {
"type": "git",
"url": "git+https://github.com/Unnoen/UntypedJSON.git"
},
"bugs": {
"url": "https://github.com/Unnoen/UntypedJSON/issues"
},
"main": "./dist/untypedjson.umd.cjs",
"module": "./dist/untypedjson.js",
"types": "./dist/untypedjson.d.ts",
"exports": {
".": {
"import": "./dist/untypedjson.js",
"require": "./dist/untypedjson.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^8.57.0",
"eslint-config-canonical": "^42.8.1",
"eslint-import-resolver-typescript": "^3.6.1",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-plugin-dts": "^4.0.0-beta.1",
"vitest": "^2.0.4"
},
"resolutions": {
"semver": "^7.5.2"
}
}