-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 836 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 836 Bytes
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
{
"name": "typof",
"version": "1.1.2",
"description": "Infer types.",
"license": "MIT",
"homepage": "https://github.com/keift/typof",
"bugs": "https://github.com/keift/typof/issues",
"main": "./dist/main.cjs",
"module": "./dist/main.mjs",
"types": "./dist/main.d.mts",
"scripts": {
"tests": "bun run lint && bun test",
"build": "tsdown",
"prettier": "prettier --write ./",
"lint": "eslint ./"
},
"dependencies": {},
"devDependencies": {
"prettier": "latest",
"rulint": "latest",
"tsdown": "latest",
"unrun": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/keift/typof"
},
"keywords": [
"type",
"types",
"typeof",
"string",
"number",
"integer",
"float",
"boolean",
"date",
"object",
"array"
]
}