-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
107 lines (107 loc) · 2.3 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "convert",
"version": "5.7.0",
"description": "The smallest & fastest library for really easy, totally type-safe unit conversions in TypeScript & JavaScript",
"keywords": [
"convert",
"convert-units",
"unit-conversion",
"uom",
"metric",
"imperial",
"units",
"unit",
"measurement",
"measure",
"temperature",
"mass",
"weight",
"length",
"data"
],
"homepage": "https://convert.js.org/",
"repository": {
"type": "git",
"url": "http://github.com/jonahsnider/convert.git"
},
"license": "MIT",
"author": {
"name": "Jonah Snider",
"email": "[email protected]",
"url": "https://jonahsnider.com"
},
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"jsdelivr": "./dist/index.mjs",
"unpkg": "./dist/index.mjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.mjs",
"react-native": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/",
"!dist/typings",
"!dist/src",
"!dist/test",
"!dist/scripts",
"!dist/rollup.config.js"
],
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@biomejs/biome": "1.9.4",
"@codspeed/vitest-plugin": "3.1.1",
"@jonahsnider/util": "11.0.0",
"@microsoft/api-extractor": "7.49.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-swc": "0.4.0",
"@rollup/plugin-terser": "0.4.4",
"@size-limit/preset-small-lib": "11.1.6",
"@swc/core": "1.10.7",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/node": "20.17.14",
"@vitest/coverage-v8": "2.1.5",
"@vitest/ui": "^2.0.0",
"bignumber.js": "9.1.2",
"just-install": "2.0.2",
"rollup": "4.30.1",
"size-limit": "11.1.6",
"typedoc": "0.27.6",
"typescript": "5.7.3",
"vitest": "2.1.5"
},
"packageManager": "[email protected]",
"runkitExampleFilename": "./docs/runkit.js",
"size-limit": [
{
"brotli": true,
"limit": "5.53 KB",
"path": "./dist/index.js"
},
{
"gzip": true,
"limit": "6.97 KB",
"path": "./dist/index.js"
},
{
"brotli": true,
"limit": "5.31 KB",
"path": "./dist/index.mjs"
},
{
"gzip": true,
"limit": "6.72 KB",
"path": "./dist/index.mjs"
}
]
}