-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 KB
/
package.json
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
{
"name": "storeon-velo",
"version": "5.0.0-rc.5",
"description": "A tiny event-based state manager Storeon for Velo by Wix",
"type": "module",
"main": "src/index.js",
"types": "./src/index.d.ts",
"exports": "./src/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint src/**/*.js tests/**/*.js",
"size": "size-limit",
"test": "node --test tests/*.spec.js"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.8.4",
"@size-limit/preset-small-lib": "^11.1.6",
"@types/node": "^22.9.1",
"eslint": "^9.15.0",
"size-limit": "^11.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/shoonia/storeon-velo.git"
},
"bugs": {
"url": "https://github.com/shoonia/storeon-velo/issues"
},
"keywords": [
"wix",
"corvid",
"wixcode",
"editorx",
"velo",
"wix-studio",
"storeon",
"redux"
],
"files": [
"src"
],
"author": {
"name": "Alexander Zaytsev",
"email": "[email protected]",
"url": "https://x.com/_shoonia"
},
"homepage": "https://github.com/shoonia/storeon-velo#readme",
"license": "MIT",
"private": false
}