-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.89 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.89 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
{
"name": "lo_event",
"version": "0.0.4-alpha.1",
"description": "Event logging library for the Learning Observer",
"main": "dist/loEvent.js",
"types": "dist/loEvent.d.ts",
"targets": {
"main": false,
"types": false
},
"files": [
"dist/",
"README.md",
"LICENSE.TXT"
],
"exports": {
".": {
"types": "./dist/loEvent.d.ts",
"import": "./dist/loEvent.js"
},
"./redux": {
"types": "./dist/reduxLogger.d.ts",
"import": "./dist/reduxLogger.js"
},
"./debug": {
"types": "./dist/debugLog.d.ts",
"import": "./dist/debugLog.js"
},
"./console": {
"types": "./dist/consoleLogger.d.ts",
"import": "./dist/consoleLogger.js"
},
"./websocket": {
"types": "./dist/websocketLogger.d.ts",
"import": "./dist/websocketLogger.js"
},
"./browser-events": {
"types": "./dist/browserEvents.d.ts",
"import": "./dist/browserEvents.js"
},
"./queue": {
"types": "./dist/queue.d.ts",
"import": "./dist/queue.js"
},
"./storage": {
"types": "./dist/browserStorage.d.ts",
"import": "./dist/browserStorage.js"
},
"./disabler": {
"types": "./dist/disabler.d.ts",
"import": "./dist/disabler.js"
},
"./util": {
"types": "./dist/util.d.ts",
"import": "./dist/util.js"
},
"./null": {
"types": "./dist/nullLogger.d.ts",
"import": "./dist/nullLogger.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "tsup",
"prepublishOnly": "npm run build",
"browser": "parcel examples/*.html --open",
"clean": "rm -Rf .cache/ dist/ .parcel-cache/ lo_event-*.tgz",
"pack-install": "rm -f lo_event-*.tgz && npm run build && npm pack && npm install --no-save --prefix ../lo-blocks-test lo_event-*.tgz",
"lint": "eslint src/ tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArgLab/lo_event.git"
},
"author": "Piotr Mitros",
"license": "SEE LICENSE IN LICENSE.TXT",
"bugs": {
"url": "https://github.com/ArgLab/lo_event/issues"
},
"homepage": "https://github.com/ArgLab/lo_event#readme",
"type": "module",
"dependencies": {
"lodash": "^4.17.21",
"redux": "^5.0.1",
"redux-state-sync": "^3.1.4",
"redux-thunk": "^3.1.0",
"uuid": "^10.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/lodash": "^4.17.23",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"globals": "^17.3.0",
"parcel": "^2.12.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"browser": {
"fs": false
}
}