-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.09 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
80
81
82
83
84
85
86
87
88
89
{
"name": "xdash",
"version": "0.5.12",
"description": "A lean TypeScript utility library designed for simplicity and performance.",
"repository": {
"type": "git",
"url": "git+https://github.com/shtse8/xdash.git"
},
"keywords": [
"typescript",
"utilities",
"modular",
"tree-shakable",
"performance",
"type-guards"
],
"files": [
"dist"
],
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"types": "./dist/index.d.js"
},
"./array": {
"import": "./dist/array.esm.js",
"types": "./dist/array.d.js"
},
"./async": {
"import": "./dist/async.esm.js",
"types": "./dist/async.d.js"
},
"./chain": {
"import": "./dist/chain.esm.js",
"types": "./dist/chain.d.js"
},
"./function": {
"import": "./dist/function.esm.js",
"types": "./dist/function.d.js"
},
"./object": {
"import": "./dist/object.esm.js",
"types": "./dist/object.d.js"
},
"./string": {
"import": "./dist/string.esm.js",
"types": "./dist/string.d.js"
},
"./misc": {
"import": "./dist/misc.esm.js",
"types": "./dist/misc.d.js"
},
"./types": {
"import": "./dist/types.esm.js",
"types": "./dist/types.d.js"
},
"./semantic": {
"import": "./dist/semantic.esm.js",
"types": "./dist/semantic.d.js"
}
},
"author": "Kyle Tse <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shtse8/xdash/issues"
},
"homepage": "https://github.com/shtse8/xdash#readme",
"sideEffects": false,
"scripts": {
"test": "bun test",
"build": "bun build.ts",
"release": "bun run test && bun run build && bun release-it"
},
"devDependencies": {
"@anymud/bun-plugin-dts": "^1.0.2",
"@types/bun": "latest",
"astro": "latest",
"consola": "^3.2.3",
"release-it": "^17.1.1",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "next"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {}
}