-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.51 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
77
78
79
{
"name": "@shigen/merge",
"version": "0.2.0",
"description": "Merge and deep merge utility for nested data structures",
"keywords": [
"merge",
"deep",
"deepmerge",
"javascript",
"typescript",
"esm"
],
"license": "ISC",
"author": "Tao Cumplido",
"repository": "https://github.com/tao-cumplido/shigen/tree/main/packages/merge",
"bugs": "https://github.com/tao-cumplido/shigen/issues",
"scripts": {
"build": "wireit",
"postbuild": "wireit",
"test": "wireit"
},
"wireit": {
"build": {
"command": "tscd",
"clean": "if-file-deleted",
"files": [
"src/**/*.ts",
"!src/**/*.test.ts",
"../../tsconfig.base.json",
"tsconfig.json"
],
"output": [
"dist/**"
]
},
"postbuild": {
"command": "attw --pack .",
"files": [
"dist/**",
"package.json"
],
"output": []
},
"test:types": {
"command": "tsc --project tsconfig.test.json",
"files": [
"src/**/*.ts"
],
"output": []
},
"test": {
"command": "tsx --tsconfig tsconfig.test.json --test-reporter spec --test 'src/**/*.test.ts'",
"dependencies": [
{
"script": "test:types",
"cascade": false
}
],
"files": [
"src/**/*.ts"
],
"output": []
}
},
"exports": {
".": {
"import": {
"types": "./dist/module/merge.d.ts",
"default": "./dist/module/merge.js"
},
"require": {
"types": "./dist/commonjs/merge.d.ts",
"default": "./dist/commonjs/merge.js"
}
}
},
"types": "./dist/commonjs/merge.d.ts",
"main": "./dist/commonjs/merge.js"
}