@choiceopen/atomemo-plugin-schema 0.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 +37 -0
- package/dist/schemas.d.ts +12018 -0
- package/dist/schemas.js +532 -0
- package/dist/schemas.js.map +1 -0
- package/dist/types-CpQliD1G.d.ts +702 -0
- package/dist/types.d.ts +2 -0
- package/dist/types.js +0 -0
- package/package.json +66 -0
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Choiceform Atomemo Plugin Schema
|
|
2
|
+
|
|
3
|
+
## Development
|
|
4
|
+
|
|
5
|
+
- Install dependencies:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun install
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
- Watch and rebuild in development
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
bun run dev
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
- Linting and formatting
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
bun run check
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
- Run the unit tests:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
bun run test
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
- Build the library:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
bun run build
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Linting and formatting
|
|
36
|
+
|
|
37
|
+
This project uses Biome to provide unified linting and formatting, please install VS Code extension if you use VS Code to having the best DX support.
|