@context-action/core 0.8.1 → 0.8.6

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.1",
3
+ "version": "0.8.6",
4
4
  "type": "module",
5
5
  "description": "Type-safe action pipeline management library for JavaScript/TypeScript",
6
6
  "main": "dist/index.cjs",
@@ -24,6 +24,22 @@
24
24
  "README.ko.md",
25
25
  "LICENSE"
26
26
  ],
27
+ "scripts": {
28
+ "build": "tsdown",
29
+ "build:watch": "tsdown --watch",
30
+ "test": "NODE_OPTIONS=--max-old-space-size=8192 jest --runInBand --logHeapUsage",
31
+ "test:watch": "jest --watch",
32
+ "test:coverage": "jest --coverage",
33
+ "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",
37
+ "clean": "rimraf dist coverage",
38
+ "security:audit": "pnpm audit --audit-level high",
39
+ "security:outdated": "pnpm outdated",
40
+ "security:check": "pnpm security:audit && pnpm security:outdated",
41
+ "prepublishOnly": "pnpm run build"
42
+ },
27
43
  "keywords": [
28
44
  "typescript",
29
45
  "javascript",
@@ -43,18 +59,30 @@
43
59
  "url": "https://github.com/mineclover/context-action/issues"
44
60
  },
45
61
  "homepage": "https://github.com/mineclover/context-action#readme",
62
+ "publishConfig": {
63
+ "access": "public"
64
+ },
65
+ "peerDependencies": {
66
+ "zod": "^4.0.0"
67
+ },
68
+ "peerDependenciesMeta": {
69
+ "zod": {
70
+ "optional": true
71
+ }
72
+ },
46
73
  "devDependencies": {
47
74
  "@eslint/js": "9.34.0",
48
75
  "@types/jest": "^30.0.0",
49
- "@typescript-eslint/eslint-plugin": "^8.41.0",
50
- "@typescript-eslint/parser": "^8.41.0",
76
+ "@typescript-eslint/eslint-plugin": "^8.57.2",
77
+ "@typescript-eslint/parser": "^8.57.2",
51
78
  "eslint": "^9.34.0",
52
- "jest": "^30.0.5",
53
- "rimraf": "^6.0.1",
54
- "ts-jest": "^29.4.1",
79
+ "jest": "^30.3.0",
80
+ "rimraf": "^6.1.3",
81
+ "ts-jest": "^29.4.6",
55
82
  "tsdown": "^0.14.2",
56
83
  "tslib": "^2.8.1",
57
- "typescript": "^5.9.2"
84
+ "typescript": "^5.9.2",
85
+ "zod": "^4.3.6"
58
86
  },
59
87
  "engines": {
60
88
  "node": ">=18.0.0"
@@ -73,19 +101,5 @@
73
101
  "not dead",
74
102
  "not ie 11"
75
103
  ],
76
- "scripts": {
77
- "build": "tsdown",
78
- "build:watch": "tsdown --watch",
79
- "test": "NODE_OPTIONS=--max-old-space-size=8192 jest --runInBand --logHeapUsage",
80
- "test:watch": "jest --watch",
81
- "test:coverage": "jest --coverage",
82
- "test:ci": "jest --ci --coverage --maxWorkers=2",
83
- "lint": "eslint src --ext .ts",
84
- "lint:fix": "eslint src --ext .ts --fix",
85
- "type-check": "tsc --noEmit",
86
- "clean": "rimraf dist coverage",
87
- "security:audit": "pnpm audit --audit-level high",
88
- "security:outdated": "pnpm outdated",
89
- "security:check": "pnpm security:audit && pnpm security:outdated"
90
- }
91
- }
104
+ "gitHead": "f43e1503a6a71d94f6dd1e49734f46fb0d51a606"
105
+ }