-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.2 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.2 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
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
{
"name": "mktemp",
"description": "create temporary files and directories",
"version": "2.0.2",
"author": "sasa+1 <sasaplus1@gmail.com>",
"contributors": [
"Michael Ficarra <github.public.email@michael.ficarra.me>",
"rjz <rj@rjzaworski.com>"
],
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@biomejs/biome": "2.4.6",
"@tsconfig/strictest": "2.0.8",
"@types/node": "24.12.0",
"@vitest/coverage-v8": "4.1.0",
"fixpack": "4.0.0",
"npm-run-all2": "8.0.4",
"tsdown": "0.21.2",
"typescript": "5.9.3",
"vitest": "4.1.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10",
"onFail": "error"
}
},
"engines": {
"node": "20 || 22 || 24"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./*": {
"import": {
"types": "./dist/*.d.mts",
"default": "./dist/*.mjs"
},
"require": {
"types": "./dist/*.d.cts",
"default": "./dist/*.cjs"
}
}
},
"files": [
"dist"
],
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/sasaplus1/mktemp.git"
},
"scripts": {
"build": "tsdown",
"check": "run-p -l check:*",
"check:attw": "run-s -l build && pnpm pack && run-p -l check:attw:* && rm mktemp-*.tgz",
"check:attw:esm-only": "attw mktemp-*.tgz --profile esm-only",
"check:attw:node16": "attw mktemp-*.tgz --profile node16",
"check:attw:strict": "attw mktemp-*.tgz --profile strict",
"fix": "run-p -l fix:*",
"fix:biome": "biome check --write .",
"fix:fixpack": "fixpack",
"lint": "run-p -l lint:*",
"lint:biome": "biome lint .",
"lint:fixpack": "fixpack --dryRun",
"lint:tsc": "tsc --noEmit",
"test": "vitest run --coverage"
},
"sideEffects": false,
"types": "./dist/index.d.cts"
}