-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "@luizffgv/ts-conversions",
"version": "1.0.0",
"description": "Utilities for safely and unsafely working around TypeScript type checking.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"lib/"
],
"scripts": {
"prepare": "npm run build && npm run test",
"build": "tsc -p src/tsconfig.json && tsc -p src/tsconfig-decls.json",
"test": "tsc -p tests/tsconfig.json && node tests/compiled/tests.js",
"docs": "typedoc --tsconfig src/tsconfig.json src/index.ts",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luizffgv/ts-conversions.git"
},
"keywords": [
"typescript"
],
"author": "Luiz Fernando F. G. Valle <luizfvalle@pm.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luizffgv/ts-conversions/issues"
},
"homepage": "https://github.com/luizffgv/ts-conversions#readme",
"devDependencies": {
"@types/assert": "1.5.6",
"assert": "2.0.0",
"prettier": "3.0.0",
"test": "3.3.0",
"typedoc": "0.24.8",
"typescript": "5.1.6"
},
"publishConfig": {
"access": "public"
}
}