-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
85 lines (85 loc) · 2.42 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
{
"name": "radashi",
"version": "12.2.0",
"type": "module",
"description": "The modern, community-first TypeScript toolkit with all of the fast, readable, and minimal utility functions you need. Type-safe, dependency-free, tree-shakeable, fully tested.",
"repository": {
"url": "git+https://github.com/radashi-org/radashi.git"
},
"homepage": "https://radashi.js.org",
"author": "Alec Larson",
"contributors": [
"Ray Epps"
],
"license": "MIT",
"packageManager": "pnpm@9.1.3",
"engines": {
"node": ">=16.0.0"
},
"main": "dist/radashi.cjs",
"module": "dist/radashi.js",
"exports": {
"require": {
"types": "./dist/radashi.d.cts",
"default": "./dist/radashi.cjs"
},
"types": "./dist/radashi.d.ts",
"default": "./dist/radashi.js"
},
"types": "dist/radashi.d.cts",
"files": [
"dist"
],
"scripts": {
"add-function": "bash ./scripts/add-function.sh",
"bench": "vitest bench",
"build": "tsup --clean",
"bundle-impact": "bash ./scripts/bundle-impact.sh",
"dev": "tsup --clean --watch --sourcemap",
"format": "bash ./scripts/format.sh",
"lint": "bash ./scripts/lint.sh",
"move-function": "bash ./scripts/move-function.sh",
"test": "vitest run --coverage",
"test-branch": "bash ./scripts/test-branch.sh",
"test-single": "bash ./scripts/test-single.sh",
"update-browserslist": "bash ./scripts/update-browserslist.sh"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@radashi-org/biome-config": "link:scripts/biome-config",
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "2.0.5",
"cspell": "^8.13.3",
"prettier": "^3.3.2",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"radashi-helper": "^0.1.4",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "2.1.1"
},
"sideEffects": false,
"browserslist": [
"and_chr >= 57",
"chrome >= 57",
"and_ff >= 52",
"android >= 127",
"edge >= 15",
"samsung >= 7.4",
"safari >= 10.1",
"ios_saf >= 10.3",
"opera >= 44",
"firefox >= 52",
"unreleased and_chr versions",
"unreleased chrome versions",
"unreleased and_ff versions",
"unreleased android versions",
"unreleased edge versions",
"unreleased samsung versions",
"unreleased safari versions",
"unreleased ios_saf versions",
"unreleased opera versions",
"unreleased firefox versions",
"node >= 16"
]
}