-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "ts-decode",
"version": "0.0.14",
"description": "type safe decoding in typescript",
"main": "./dist/cjs/index.js",
"module": "./dist/es6/index.js",
"types": "./dist/es6/index.d.js",
"sideEffects": false,
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"author": "Alessandro Scandone",
"repository": {
"type": "git",
"url": "https://github.com/ascandone/ts-decode"
},
"keywords": [
"typescript",
"decode",
"parsing"
],
"scripts": {
"test": "vitest --run --coverage",
"test:watch": "vitest",
"format:check": "prettier src/* test/* --check",
"typescript:check": "tsc --noEmit",
"build": "rm -f -r dist/ && npm run build:es6 && npm run build:cjs",
"build:es6": "tsc --project tsconfig.es6.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"docs:build": "typedoc",
"prepare": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@vitest/coverage-v8": "^1.2.2",
"benny": "^3.7.1",
"codecov": "^3.8.3",
"fp-ts": "^2.11.5",
"io-ts": "^2.2.16",
"myzod": "^1.8.6",
"prettier": "^3.2.5",
"runtypes": "^6.5.0",
"ts-node": "^10.4.0",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vitest": "^1.2.2",
"zod": "^3.11.6"
}
}