package-management 0.0.9 → 0.0.10

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 CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "package-management",
3
3
  "description": "Simple type-safe utilities for programatically installing and importing packages",
4
- "version": "0.0.9",
4
+ "version": "0.0.10",
5
5
  "type": "module",
6
6
  "private": false,
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/tyler-mitchell/package-management.git",
10
+ "directory": "libs/package-management"
11
+ },
7
12
  "files": [
8
13
  "dist/**"
9
14
  ],
@@ -14,54 +19,56 @@
14
19
  "require": "./dist/index.cjs"
15
20
  }
16
21
  },
17
- "scripts": {
18
- "build": "unbuild",
19
- "build:watch": "tsc --watch --preserveWatchOutput",
20
- "dev": "unbuild --stub",
21
- "lint": "eslint",
22
- "lint:fix": "eslint --fix",
23
- "test": "vitest --fileParallelism=false",
24
- "test:bench": "vitest bench",
25
- "test:silent": "vitest --reporter=./vitest-reporter.ts",
26
- "typecheck": "tsc --noEmit",
27
- "clean": "rm -rf .tsbuildinfo .turbo coverage dist node_modules",
28
- "npm-publish": "pnpm run build && npm publish --access public --no-git-checks"
29
- },
30
22
  "devDependencies": {
31
- "@sourcegraph/scip-typescript": "^0.3.12",
32
- "@types/node": "20.5.9",
23
+ "@types/node": "26.2.0",
24
+ "@typescript/typescript6": "^6.0.2",
33
25
  "citty": "^0.1.5",
26
+ "free-types": "^0.12.0",
34
27
  "jiti": "^1.21.0",
28
+ "ts-toolbelt": "^9.6.0",
35
29
  "tsl": "^0.0.9",
36
30
  "tsx": "^4.7.0",
37
31
  "type-level-regexp": "^0.1.17",
38
- "typescript": "^5.3.2",
39
- "unbuild": "^2.0.0",
40
- "vite-tsconfig-paths": "^4.3.1",
41
- "vitest": "^1.2.2"
32
+ "typescript": "7.0.2",
33
+ "unbuild": "^3.6.1",
34
+ "vite": "^8.2.1",
35
+ "vitest": "^4.1.11"
42
36
  },
43
37
  "dependencies": {
44
- "@antfu/install-pkg": "^0.3.1",
45
- "@types/error-stack-parser": "^2.0.0",
38
+ "@antfu/install-pkg": "^2.0.1",
39
+ "@arktype/util": "^0.0.26",
40
+ "@clickbar/dot-diver": "^1.0.7",
46
41
  "arktype": "2.0.0-dev.1",
47
42
  "async-cache-fn": "^0.0.3",
48
43
  "error-stack-parser": "^2.1.4",
49
- "execa": "^8.0.1",
50
- "find-up": "^7.0.0",
51
- "get-current-line": "^7.4.0",
52
- "globby": "^14.0.0",
53
- "is-odd": "^3.0.1",
54
- "jsonc-parser": "^3.2.1",
55
- "local-pkg": "^0.5.0",
56
- "lru-cache": "^10.2.0",
57
- "magic-regexp": "^0.7.0",
44
+ "execa": "^10.0.1",
45
+ "find-up": "^8.0.0",
46
+ "globby": "^16.2.4",
47
+ "jsonc-parser": "^3.3.1",
48
+ "local-pkg": "^1.2.1",
49
+ "lru-cache": "^11.5.2",
50
+ "magic-regexp": "^0.11.0",
58
51
  "mlly": "^1.5.0",
59
52
  "parse-gitignore": "^2.0.0",
60
- "pathe": "^1.1.2",
61
- "string-ts": "^2.0.0",
62
- "ts-regex-builder": "^1.0.1",
63
- "unstorage": "^1.10.1",
64
- "workspace-tools": "^0.36.4",
65
- "yaml": "^2.3.4"
53
+ "pathe": "^2.0.3",
54
+ "string-ts": "^2.3.1",
55
+ "ts-regex-builder": "^1.8.2",
56
+ "unstorage": "^1.17.5",
57
+ "workspace-tools": "^0.42.2",
58
+ "yaml": "^2.9.0"
59
+ },
60
+ "scripts": {
61
+ "build": "unbuild",
62
+ "build:watch": "tsc --watch --preserveWatchOutput",
63
+ "check": "pnpm run lint && pnpm run typecheck && pnpm run build && pnpm run test",
64
+ "dev": "unbuild --stub",
65
+ "lint": "eslint",
66
+ "lint:fix": "eslint --fix",
67
+ "test": "vitest --fileParallelism=false",
68
+ "test:bench": "vitest bench",
69
+ "test:snapshot": "vitest -u --fileParallelism=false",
70
+ "test:silent": "vitest --reporter=dot",
71
+ "typecheck": "tsc --noEmit",
72
+ "clean": "rm -rf .tsbuildinfo .turbo coverage dist node_modules"
66
73
  }
67
- }
74
+ }