-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "mapwise",
"module": "index.ts",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"./keyBy": {
"require": "./dist/cjs/keyBy.js",
"import": "./dist/esm/keyBy.js",
"types": "./dist/esm/keyBy.d.ts"
},
"./groupBy": {
"require": "./dist/cjs/groupBy.js",
"import": "./dist/esm/groupBy.js",
"types": "./dist/esm/groupBy.d.ts"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build:esm": "tsc",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "bun run build:esm && bun run build:cjs",
"typecheck": "tsc -p tsconfig.test.json"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/bun": "latest",
"semantic-release": "^24.2.3"
},
"peerDependencies": {
"typescript": ">=5"
},
"version": "1.0.0",
"license": "MIT"
}