antpath 0.1.0 → 0.1.1

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,51 +1,46 @@
1
- {
2
- "name": "antpath",
3
- "version": "0.1.0",
4
- "description": "TypeScript SDK for running autonomous Claude Managed Agents sessions.",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/weilueluo/antpath.git"
8
- },
9
- "type": "module",
10
- "main": "./dist/index.js",
11
- "types": "./dist/index.d.ts",
12
- "exports": {
13
- ".": {
14
- "types": "./dist/index.d.ts",
15
- "import": "./dist/index.js"
16
- }
17
- },
18
- "files": [
19
- "dist",
20
- "README.md",
21
- "docs",
22
- "examples",
23
- "references"
24
- ],
25
- "scripts": {
26
- "build": "tsc -p tsconfig.build.json",
27
- "lint": "tsc --noEmit",
28
- "test": "vitest run test/unit test/integration/components test/integration/api-recorded",
29
- "test:unit": "vitest run test/unit",
30
- "test:integration:components": "vitest run test/integration/components",
31
- "test:integration:api": "vitest run test/integration/api-recorded",
32
- "test:e2e:live": "vitest run test/integration/live",
33
- "fixtures:record:anthropic": "tsx scripts/record-api-fixtures.ts",
34
- "fixtures:sanitize": "tsx scripts/sanitize-api-fixtures.ts",
35
- "prepack": "npm run build"
36
- },
37
- "dependencies": {
38
- "eventsource-parser": "3.0.6",
39
- "fflate": "0.8.2"
40
- },
41
- "devDependencies": {
42
- "@types/node": "22.15.3",
43
- "dotenv": "16.5.0",
44
- "tsx": "4.19.4",
45
- "typescript": "5.8.3",
46
- "vitest": "3.1.2"
47
- },
48
- "engines": {
49
- "node": ">=20"
50
- }
51
- }
1
+ {
2
+ "name": "antpath",
3
+ "version": "0.1.1",
4
+ "description": "TypeScript SDK for running autonomous Claude Managed Agents sessions.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/weilueluo/antpath.git"
8
+ },
9
+ "type": "module",
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "docs",
22
+ "examples",
23
+ "references"
24
+ ],
25
+ "dependencies": {
26
+ "eventsource-parser": "3.0.6",
27
+ "fflate": "0.8.2"
28
+ },
29
+ "engines": {
30
+ "node": ">=20"
31
+ },
32
+ "scripts": {
33
+ "build": "tsc -p tsconfig.build.json",
34
+ "lint": "tsc --noEmit",
35
+ "test": "vitest run test/unit",
36
+ "test:unit": "vitest run test/unit",
37
+ "test:unit:recorded": "vitest run test/unit/recorded",
38
+ "test:load:replay": "vitest run test/unit/recorded/anthropic-replay-resilience.test.ts",
39
+ "test:property": "vitest run property",
40
+ "test:coverage": "vitest run --coverage test/unit",
41
+ "test:e2e:live": "vitest run test/e2e/live",
42
+ "fixtures:record:anthropic": "tsx scripts/record-api-fixtures.ts",
43
+ "fixtures:sanitize": "tsx scripts/sanitize-api-fixtures.ts",
44
+ "publish:dry-run": "pnpm publish --dry-run --no-git-checks"
45
+ }
46
+ }