@spences10/pi-child-env 0.1.2 → 0.1.3
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 +9 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-child-env",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Shared safe environment builder for Pi child processes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"env",
|
|
@@ -29,15 +29,18 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^25.6.0",
|
|
32
|
-
"typescript": "^6.0.
|
|
32
|
+
"typescript": "^6.0.3",
|
|
33
33
|
"vitest": "^4.1.5"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
|
-
"node": ">=
|
|
36
|
+
"node": ">=24.15.0"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
|
-
"build": "
|
|
40
|
-
"
|
|
41
|
-
"
|
|
39
|
+
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
40
|
+
"build:self": "tsc -p tsconfig.build.json",
|
|
41
|
+
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
42
|
+
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
43
|
+
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
44
|
+
"test:self": "vitest run"
|
|
42
45
|
}
|
|
43
46
|
}
|