-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "@austinburns/type-utils",
"version": "1.0.1",
"author": "Austin Burns <austin.c.burns@gmail.com>",
"description": "Type utilities that I commonly use",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/types/index.d.ts",
"files": [
"index.ts",
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"sideEffects": false,
"scripts": {
"build": "yarn run clean && yarn run build:esm && yarn run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"clean": "rm -rf ./dist",
"prepare": "yarn run build"
},
"devDependencies": {
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AustinBurns/type-utils.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AustinBurns/type-utils/issues"
},
"homepage": "https://github.com/AustinBurns/type-utils#readme",
"dependencies": {
"type-fest": "^4.3.1"
}
}