-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.36 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
{
"name": "@equinor/fusion-framework-module-state",
"version": "2.0.1",
"description": "A reactive state management module for the Fusion Framework with type-safe storage and observation capabilities",
"type": "module",
"main": "dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"./events": {
"import": "./dist/esm/events/index.js",
"types": "./dist/types/events/index.d.ts"
},
"./storage": {
"import": "./dist/esm/storage/index.js",
"types": "./dist/types/storage/index.d.ts"
},
"./default-storage": {
"import": "./dist/esm/create-default-storage.js",
"types": "./dist/types/create-default-storage.d.ts"
},
"./package.json": "./package.json",
"./README.md": "./README.md"
},
"typesVersions": {
"*": {
".": [
"dist/types/index.d.ts"
],
"events": [
"dist/types/events/index.d.ts"
],
"storage": [
"dist/types/storage/index.d.ts"
],
"default-storage": [
"dist/types/create-default-storage.d.ts"
]
}
},
"scripts": {
"build": "tsc -b",
"prepack": "pnpm build",
"test": "vitest run --reporter=verbose",
"test:watch": "vitest --reporter=verbose --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/fusion-framework.git",
"directory": "packages/modules/state"
},
"dependencies": {
"@equinor/fusion-framework-module": "workspace:^",
"@equinor/fusion-observable": "workspace:^",
"events": "^3.3.0",
"fast-deep-equal": "^3.1.3",
"immer": "^11.1.17",
"pouchdb": "^9.0.0",
"rxjs": "^7.8.1",
"uuid": "^14.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@equinor/fusion-framework-module-event": "workspace:^",
"@equinor/fusion-framework-module-http": "workspace:^",
"@equinor/fusion-framework-module-navigation": "workspace:^",
"@equinor/fusion-framework-module-service-discovery": "workspace:^",
"@types/pouchdb": "^6.4.2",
"@types/uuid": "^11.0.0",
"fake-indexeddb": "^6.2.0",
"happy-dom": "^20.8.9",
"pouchdb-adapter-idb": "^9.0.0",
"typescript": "^7.0.2",
"vitest": "^4.1.0"
}
}