-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.05 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@actor-web/core",
"version": "0.1.0",
"description": "Pure Actor Model framework for building web applications with message-passing architecture",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"build:watch": "pnpm build --watch",
"dev": "vitest --watch",
"test": "pnpm test:dom && pnpm test:cli && pnpm test:runtime",
"test:dom": "vitest run",
"test:cli": "pnpm --filter @agent-workflow/cli test",
"test:runtime": "pnpm --filter @actor-core/runtime test",
"test:all": "pnpm test",
"lint": "biome check .",
"format": "biome format . --write",
"typecheck": "tsc --build",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm clean && pnpm build",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:debug": "DEBUG_TESTS=true vitest run",
"lint:fix": "biome check . --write",
"format:imports": "biome check . --write --organize-imports-enabled=true",
"format:all": "biome check . --write --organize-imports-enabled=true --formatter-enabled=true",
"deps:check": "pnpm list tinypool && pnpm why tinypool",
"deps:clean": "pnpm store prune && rm -rf node_modules pnpm-lock.yaml && pnpm install",
"examples:dev": "vite examples --config examples/vite.config.ts",
"examples:build": "vite build examples --config examples/vite.config.ts",
"aw": "pnpm --filter @agent-workflow/cli dev",
"aw:help": "pnpm --filter @agent-workflow/cli dev --help",
"aw:init": "pnpm --filter @agent-workflow/cli dev init",
"aw:sync": "pnpm --filter @agent-workflow/cli dev sync",
"aw:validate": "pnpm --filter @agent-workflow/cli dev validate",
"aw:ship": "pnpm --filter @agent-workflow/cli dev ship",
"aw:save": "pnpm --filter @agent-workflow/cli dev save",
"aw:status": "pnpm --filter @agent-workflow/cli dev status",
"aw:commit": "pnpm --filter @agent-workflow/cli dev commit",
"aw:generate": "pnpm --filter @agent-workflow/cli dev generate-message",
"utils:date": "./scripts/date-utils.sh current",
"utils:date-scan": "./scripts/date-utils.sh scan",
"utils:date-fix": "./scripts/date-utils.sh fix-all",
"utils:commit-config": "./scripts/commit-config.sh validate",
"utils:commit-sample": "./scripts/commit-config.sh create-sample",
"utils:validate-dates": "pnpm --filter @agent-workflow/cli dev validate-dates"
},
"keywords": [
"actor-model",
"web-framework",
"reactive",
"state-management",
"xstate",
"observable",
"typescript",
"message-passing",
"fault-tolerance",
"supervision"
],
"author": "0xjcf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/0xjcf/actor-web.git"
},
"bugs": {
"url": "https://github.com/0xjcf/actor-web/issues"
},
"homepage": "https://github.com/0xjcf/actor-web#readme",
"dependencies": {
"@actor-core/testing": "workspace:*",
"xstate": "^5.19.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.1.4",
"@xstate/graph": "^3.0.4",
"happy-dom": "^18.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.mjs",
"require": "./dist/core/index.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"import": "./dist/testing/index.mjs",
"require": "./dist/testing/index.js"
}
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"overrides": {
"tinypool": "^1.1.1",
"vitest": "^2.1.4"
}
}
}