@difizen/libro-shared-model 0.0.2-alpha.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/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@difizen/libro-shared-model",
3
+ "version": "0.0.2-alpha.0",
4
+ "description": "",
5
+ "keywords": [
6
+ "libro",
7
+ "notebook"
8
+ ],
9
+ "repository": "git@github.com:difizen/libro.git",
10
+ "license": "MIT",
11
+ "type": "module",
12
+ "exports": {
13
+ ".": {
14
+ "typings": "./es/index.d.ts",
15
+ "default": "./es/index.js"
16
+ },
17
+ "./mock": {
18
+ "typings": "./es/mock/index.d.ts",
19
+ "default": "./es/mock/index.js"
20
+ },
21
+ "./es/mock": {
22
+ "typings": "./es/mock/index.d.ts",
23
+ "default": "./es/mock/index.js"
24
+ },
25
+ "./package.json": "./package.json"
26
+ },
27
+ "main": "es/index.js",
28
+ "module": "es/index.js",
29
+ "typings": "es/index.d.ts",
30
+ "files": [
31
+ "es",
32
+ "src"
33
+ ],
34
+ "dependencies": {
35
+ "@difizen/libro-common": "^0.0.2-alpha.0",
36
+ "@difizen/mana-common": "alpha",
37
+ "uuid": "^8.3.2",
38
+ "y-protocols": "^1.0.5",
39
+ "yjs": "^13.5.40"
40
+ },
41
+ "devDependencies": {
42
+ "@types/uuid": "^8.3.4"
43
+ },
44
+ "scripts": {
45
+ "setup": "father build",
46
+ "build": "father build",
47
+ "test": ": Note: lint task is delegated to test:* scripts",
48
+ "test:vitest": "vitest run",
49
+ "test:jest": "jest",
50
+ "coverage": ": Note: lint task is delegated to coverage:* scripts",
51
+ "coverage:vitest": "vitest run --coverage",
52
+ "coverage:jest": "jest --coverage",
53
+ "lint": ": Note: lint task is delegated to lint:* scripts",
54
+ "lint:eslint": "eslint src",
55
+ "lint:tsc": "tsc --noEmit"
56
+ }
57
+ }