-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
58
59
{
"name": "@ibnlanre/types",
"version": "0.3.2",
"description": "An opinionated collection of typescript types",
"homepage": "https://docsmill.dev/npm/@ibnlanre/types",
"type": "module",
"scripts": {
"bundle": "tsup",
"lint": "biome lint --write .",
"test": "vitest --typecheck",
"package": "npm publish --access public",
"dry-run": "npm pack --dry-run"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.16.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"tsup": "^8.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8"
},
"author": "Ridwan Olanrewaju <olaitanlanre28@gmail.com>",
"repository": {
"url": "git+https://github.com/ibnlanre/types.git",
"type": "git",
"publishConfig": {
"access": "public"
}
},
"bugs": {
"url": "https://github.com/ibnlanre/types/issues"
},
"license": "BSD-3-Clause",
"keywords": [
"types",
"typescript",
"type-fest"
]
}