-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "comparison-fns",
"version": "1.2.1",
"description": "Composable comparison functions for sorting",
"author": {
"name": "Bob van der Linden",
"email": "[email protected]",
"url": "https://github.com/bobvanderlinden"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bobvanderlinden/comparison-fns.git"
},
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"start": "tsc --watch",
"build": "tsc && tsc-alias -p tsconfig.json",
"postbuild": "esm2cjs --in dist/esm --out dist/cjs -l error"
},
"devDependencies": {
"@alcalzone/esm2cjs": "^1.1.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
}
}