generated from productdevbookcom/ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "schob",
"version": "1.0.2",
"packageManager": "[email protected]",
"description": "Rewrite the new object according to the schema. Delete the excess.",
"author": "Mehmet - productdevbook <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/schob",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/schob.git"
},
"bugs": "https://github.com/productdevbookcom/schob/issues",
"keywords": [
"schema",
"object",
"json",
"json-schema",
"schema-object-merge",
"schema-object",
"schema-merge",
"schema-merge-object",
"schema-merge-json",
"schema-merge-json-schema",
"default object",
"default json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"filter-anything": "^3.0.7",
"is-what": "^4.1.15",
"merge-anything": "^5.1.7",
"remove-anything": "^1.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.7",
"@types/lodash": "^4.14.195",
"@vitest/coverage-c8": "^0.33.0",
"bumpp": "^9.1.1",
"eslint": "^8.44.0",
"tsup": "^6.7.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vitest": "^0.33.0"
},
"publishConfig": {
"access": "public"
}
}