@atezca/core 1.1.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/README.md +47 -0
- package/dist/cli.d.mts +2 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +1566 -0
- package/dist/cli.js.map +1 -0
- package/dist/cli.mjs +1539 -0
- package/dist/cli.mjs.map +1 -0
- package/dist/index.d.mts +204 -0
- package/dist/index.d.ts +204 -0
- package/dist/index.js +101 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +91 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +59 -0
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# @atezca/core
|
|
2
|
+
|
|
3
|
+
AI-powered E2E testing library with natural language syntax.
|
|
4
|
+
|
|
5
|
+
Part of the Atezca workspace.
|
|
6
|
+
|
|
7
|
+
## Documentation
|
|
8
|
+
|
|
9
|
+
See the [main README](../../README.md) for full documentation.
|
|
10
|
+
|
|
11
|
+
## Development
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Install dependencies
|
|
15
|
+
pnpm install
|
|
16
|
+
|
|
17
|
+
# Build
|
|
18
|
+
pnpm build
|
|
19
|
+
|
|
20
|
+
# Watch mode
|
|
21
|
+
pnpm dev
|
|
22
|
+
|
|
23
|
+
# Run tests
|
|
24
|
+
pnpm test
|
|
25
|
+
|
|
26
|
+
# Clean
|
|
27
|
+
pnpm clean
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Package Structure
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
src/
|
|
34
|
+
├── index.ts # Main API exports
|
|
35
|
+
├── cli.ts # CLI tool
|
|
36
|
+
├── types/ # TypeScript types
|
|
37
|
+
├── config/ # Configuration loader
|
|
38
|
+
├── interpreter/ # Claude AI integration
|
|
39
|
+
├── cache/ # Caching system
|
|
40
|
+
├── executor/ # Playwright executor
|
|
41
|
+
├── generator/ # Code generation
|
|
42
|
+
└── runner/ # Test orchestration
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
MIT
|
package/dist/cli.d.mts
ADDED
package/dist/cli.d.ts
ADDED