-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 821 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 821 Bytes
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
{
"name": "comes-storage",
"version": "0.0.2",
"description": "Simple Storage for ComES",
"keywords": [
"event",
"event-system",
"communication",
"event-system storage"
],
"repository": {
"type": "git",
"url": "git://github.com/rcheruti/comes-storage.git"
},
"homepage": "https://github.com/rcheruti/comes-storage#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "rimraf build && tsc",
"test": "vitest"
},
"author": "RCC",
"license": "ISC",
"peerDependencies": {
"comes": ">=0.0.4"
},
"devDependencies": {
"@vitest/coverage-v8": "2.1.3",
"comes": "^0.0.4",
"rimraf": "^6.0.1",
"typescript": "5.6.3",
"vitest": "2.1.3"
}
}