-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1004 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
{
"name": "diff-helper",
"author": "wsafight",
"version": "2.0.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"build": "bun run build:js && bun run build:types",
"build:js": "bun build ./src/index.ts --outdir ./dist --target node --format esm --entry-naming [dir]/[name].mjs && bun build ./src/index.ts --outdir ./dist --target node --format cjs --entry-naming [dir]/[name].js",
"build:types": "tsc -p tsconfig.build.json",
"test": "bun test",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"prepublishOnly": "bun run build"
},
"keywords": [
"diff",
"business",
"obj-diff",
"list-diff"
],
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@types/bun": "1.3.13",
"typescript": "6.0.3"
}
}