-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.27 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": "@techmely/es-toolkit",
"version": "1.3.1",
"description": "Collection of helpful JavaScript / TypeScript utils",
"author": "Harry Tran <nhattq.coding@gmail.com>",
"license": "MIT",
"homepage": "https://about.techmely.com/libraries/es-toolkit",
"bugs": {
"url": "https://github.com/techmely/essential-packages/issues"
},
"repository": {
"url": "git+https://github.com/techmely/es-toolkit.git#main"
},
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public",
"directory": "dist",
"tag": "latest"
},
"scripts": {
"lint.format": "bunx @biomejs/biome check --write .",
"clean": "rm -f dist node_modules",
"test.unit": "vitest --passWithNoTests --isolate",
"test.unit.run": "vitest run --passWithNoTests --isolate",
"test.unit.coverage": "vitest --coverage",
"build": "cross-env NODE_ENV=production bun run ./build.ts",
"build.tsup": "cross-env NODE_ENV=production tsup",
"release": "bun run ./release.ts",
"prepare": "husky",
"upgrade.deps": "npm-check-updates --dep dev,prod,peer -u"
},
"peerDependencies": {
"dayjs": "^1.11.13",
"base-x": "^5.0.0"
},
"peerDependenciesMeta": {
"dayjs": {
"optional": true
},
"base-x": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@techmely/types": "1.9.0",
"@testing-library/jest-dom": "6.6.2",
"@types/bun": "1.1.12",
"@types/node": "22.8.1",
"base-x": "^5.0.0",
"chalk": "^5.3.0",
"cross-env": "7.0.3",
"dayjs": "^1.11.13",
"happy-dom": "15.10.2",
"husky": "9.1.6",
"nanoid": "^5.0.7",
"npm-check-updates": "17.1.6",
"@vitest/coverage-v8": "^2.1.3",
"time-span": "5.1.0",
"tslib": "^2.8.0",
"tsup": "8.3.5",
"typescript": "5.6.3",
"vite": "^5.4.10",
"vitest": "2.1.3",
"zx": "8.1.9"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/harrytran998"
},
{
"type": "patreon",
"url": "https://www.patreon.com/harrytran998"
}
],
"keywords": [
"techmely",
"techmely-utils",
"techmely es toolkit"
],
"engines": {
"node": ">=20"
}
}