This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "value-transformer",
"version": "0.11.0-next.7",
"description": "This library allows you to serialize/deserialize complex data using transformers. There is no need to interact with the raw representation: the signature of JSON literals and ArrayBuffers is encapsulated.\n",
"homepage": "https://github.com/demensky/value-transformer#readme",
"bugs": {
"url": "https://github.com/demensky/value-transformer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demensky/value-transformer.git"
},
"license": "MIT",
"author": {
"name": "Dmitry Demensky",
"email": "[email protected]",
"url": "https://demensky.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
"types": "./src/index.ts",
"development": "./src/index.dev.js",
"default": "./src/index.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "ts-node build.ts",
"lint": "eslint .",
"prepare": "is-ci || (husky install && npm run build)",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@homer0/prettier-plugin-jsdoc": "^6.0.2",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitest/coverage-c8": "~0.30.1",
"esbuild": "0.17.17",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prettier-plugin-packagejson": "^2.4.3",
"ts-node": "^10.9.1",
"typescript": "~5.0.4",
"vite": "^4.2.2",
"vitest": "~0.30.1"
}
}