@context-action/core 0.8.6 → 0.9.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@context-action/core",
3
- "version": "0.8.6",
3
+ "version": "0.9.0",
4
4
  "type": "module",
5
5
  "description": "Type-safe action pipeline management library for JavaScript/TypeScript",
6
6
  "main": "dist/index.cjs",
@@ -21,7 +21,6 @@
21
21
  "files": [
22
22
  "dist",
23
23
  "README.md",
24
- "README.ko.md",
25
24
  "LICENSE"
26
25
  ],
27
26
  "scripts": {
@@ -31,11 +30,13 @@
31
30
  "test:watch": "jest --watch",
32
31
  "test:coverage": "jest --coverage",
33
32
  "test:ci": "jest --ci --coverage --maxWorkers=2",
34
- "lint": "eslint src --ext .ts",
35
- "lint:fix": "eslint src --ext .ts --fix",
36
- "type-check": "tsc --noEmit",
33
+ "lint": "pnpm --workspace-root exec biome lint packages/core/src",
34
+ "lint:fix": "pnpm --workspace-root exec biome lint --write packages/core/src",
35
+ "type-check:src": "tsc --noEmit",
36
+ "test:type-check": "tsc -p __tests__/tsconfig.json --pretty false",
37
+ "type-check": "pnpm run type-check:src && pnpm run test:type-check",
37
38
  "clean": "rimraf dist coverage",
38
- "security:audit": "pnpm audit --audit-level high",
39
+ "security:audit": "pnpm --workspace-root security:audit",
39
40
  "security:outdated": "pnpm outdated",
40
41
  "security:check": "pnpm security:audit && pnpm security:outdated",
41
42
  "prepublishOnly": "pnpm run build"
@@ -62,30 +63,22 @@
62
63
  "publishConfig": {
63
64
  "access": "public"
64
65
  },
65
- "peerDependencies": {
66
- "zod": "^4.0.0"
67
- },
68
- "peerDependenciesMeta": {
69
- "zod": {
70
- "optional": true
71
- }
72
- },
73
66
  "devDependencies": {
74
- "@eslint/js": "9.34.0",
67
+ "@context-action/tool-protocol": "0.8.8",
68
+ "@swc/core": "1.15.43",
69
+ "@swc/helpers": "0.5.23",
70
+ "@swc/jest": "0.2.39",
75
71
  "@types/jest": "^30.0.0",
76
- "@typescript-eslint/eslint-plugin": "^8.57.2",
77
- "@typescript-eslint/parser": "^8.57.2",
78
- "eslint": "^9.34.0",
79
- "jest": "^30.3.0",
72
+ "@types/node": "24.13.3",
73
+ "jest": "30.4.2",
80
74
  "rimraf": "^6.1.3",
81
- "ts-jest": "^29.4.6",
82
- "tsdown": "^0.14.2",
75
+ "tsdown": "0.22.5",
83
76
  "tslib": "^2.8.1",
84
- "typescript": "^5.9.2",
85
- "zod": "^4.3.6"
77
+ "typescript": "6.0.3",
78
+ "zod": "^4.4.3"
86
79
  },
87
80
  "engines": {
88
- "node": ">=18.0.0"
81
+ "node": ">=24.11.0"
89
82
  },
90
83
  "browser": {
91
84
  "node:module": false,
@@ -101,5 +94,5 @@
101
94
  "not dead",
102
95
  "not ie 11"
103
96
  ],
104
- "gitHead": "f43e1503a6a71d94f6dd1e49734f46fb0d51a606"
97
+ "gitHead": "b124dff918355c0d9ebdc0a9ee4cc48529d15eec"
105
98
  }