-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "type-decoder",
"version": "2.3.1",
"description": "A simple TS/JS library to decode values safely",
"main": "./dist/index.js",
"type": "module",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"scripts/postinstall.js"
],
"scripts": {
"dev": "tsc --watch",
"build": "rollup --config rollup.config.js",
"format:all": "npx prettier --write .",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"generate:doc": "npx typedoc src/index.ts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinha-sahil/type-decoder.git"
},
"bugs": {
"url": "https://github.com/sinha-sahil/type-decoder/issues"
},
"homepage": "https://github.com/sinha-sahil/type-decoder#readme",
"keywords": [
"types",
"decoders",
"typesafe",
"type-decoders",
"typescript",
"javascript"
],
"author": "Sahil Sinha",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.4.2",
"rollup": "^4.34.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
}
}