@altano/disposable-directory 0.0.0-beta.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +24 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@altano/disposable-directory",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Create a temporary, disposable directory that automatically gets cleaned up when the function scope exits. Uses the new `Symbol.asyncDispose` APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"directory",
|
|
@@ -33,6 +33,28 @@
|
|
|
33
33
|
"dist/**/*.js.map",
|
|
34
34
|
"dist/**/*.d.ts"
|
|
35
35
|
],
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@arethetypeswrong/cli": "^0.18.2",
|
|
38
|
+
"@types/node": "^25.5.0",
|
|
39
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
40
|
+
"@vitest/expect": "^4.1.0",
|
|
41
|
+
"depcheck": "^1.4.7",
|
|
42
|
+
"eslint": "^9.39.4",
|
|
43
|
+
"prettier": "^3.8.1",
|
|
44
|
+
"tsdown": "^0.21.4",
|
|
45
|
+
"typescript": "^5.9.3",
|
|
46
|
+
"vite": "^7.3.1",
|
|
47
|
+
"vitest": "^4.1.0",
|
|
48
|
+
"@altano/build-config": "0.0.1",
|
|
49
|
+
"@altano/testing": "0.0.1",
|
|
50
|
+
"@altano/tsconfig": "0.0.1"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=24"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public"
|
|
57
|
+
},
|
|
36
58
|
"scripts": {
|
|
37
59
|
"build": "tsdown --config-loader unrun --config ../build-config/tsdown.config.node.ts",
|
|
38
60
|
"check:exports": "attw --pack . --profile esm-only --quiet",
|
|
@@ -49,27 +71,5 @@
|
|
|
49
71
|
"test:build": "./tests/scripts/createRepositoryBundles.ts",
|
|
50
72
|
"test:unit": "vitest --run",
|
|
51
73
|
"test:unit:watch": "vitest"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@altano/build-config": "workspace:*",
|
|
55
|
-
"@altano/testing": "workspace:*",
|
|
56
|
-
"@altano/tsconfig": "workspace:*",
|
|
57
|
-
"@arethetypeswrong/cli": "catalog:",
|
|
58
|
-
"@types/node": "catalog:",
|
|
59
|
-
"@vitest/coverage-v8": "catalog:",
|
|
60
|
-
"@vitest/expect": "catalog:",
|
|
61
|
-
"depcheck": "catalog:",
|
|
62
|
-
"eslint": "catalog:",
|
|
63
|
-
"prettier": "catalog:",
|
|
64
|
-
"tsdown": "catalog:",
|
|
65
|
-
"typescript": "catalog:",
|
|
66
|
-
"vite": "catalog:",
|
|
67
|
-
"vitest": "catalog:"
|
|
68
|
-
},
|
|
69
|
-
"engines": {
|
|
70
|
-
"node": ">=24"
|
|
71
|
-
},
|
|
72
|
-
"publishConfig": {
|
|
73
|
-
"access": "public"
|
|
74
74
|
}
|
|
75
|
-
}
|
|
75
|
+
}
|