-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "ms",
"version": "4.0.0",
"description": "Tiny millisecond conversion utility",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/ms.git"
},
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
}
},
"sideEffects": false,
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.14.0-0+sha512.2cd47a0cbf5f1d1de7693a88307a0ede5be94e0d3b34853d800ee775efbea0650cb562b77605ec80bc8d925f5cd27c4dfe8bb04d3a0b76090784c664450d32d6",
"files": [
"dist"
],
"scripts": {
"test": "pnpm run test:nodejs && pnpm run test:edge",
"test:nodejs": "jest --env node",
"test:edge": "jest --env @edge-runtime/jest-environment --no-coverage",
"build": "tsdown",
"lint": "biome lint",
"format": "biome format",
"typecheck": "tsc --noEmit",
"attw": "pnpm build && attw --pack --profile esm-only .",
"precommit": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@biomejs/biome": "2.1.3",
"@edge-runtime/jest-environment": "4.0.0",
"@jest/globals": "30.0.5",
"@types/node": "^24.1.0",
"husky": "9.1.7",
"jest": "30.0.5",
"lint-staged": "16.1.2",
"ts-jest": "29.4.0",
"tsdown": "^0.13.0",
"typescript": "5.8.3"
}
}