This repository was archived by the owner on Mar 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 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
{
"name": "@baleada/recognizeable-effects",
"version": "0.8.5",
"description": "A collection of event side effects that are compatible with Baleada Logic's Recognizeable class.",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
"import": "./lib/index.js"
},
"scripts": {
"prepare": "tsc && rollup --config rollup.config.ts --configPlugin typescript --bundleConfigAsCjs",
"test:only": "run() { uvu -r esbuild-register tests/$2 $1.test.ts$; }; run",
"test": "npm run test:only .",
"dev": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baleada/recognizeable-effects.git"
},
"keywords": [
"baleada",
"recognizeable effects",
"clicks",
"double click",
"drag",
"dragdrop",
"pan",
"pinch",
"press",
"rotate",
"swipe",
"taps",
"double tap",
"recognizer"
],
"author": {
"name": "Alex Vipond",
"email": "hello@alexvipond.dev",
"url": "https://alexvipond.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/baleada/recognizeable-effects/issues"
},
"homepage": "https://baleada.netlify.com",
"devDependencies": {
"@baleada/prepare": "^0.5.29",
"esbuild": "^0.14.28",
"esbuild-register": "^3.3.2",
"rollup": "^3.5.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"uvu": "^0.5.3",
"vite": "^3.2.4"
},
"sideEffects": false,
"dependencies": {
"@baleada/logic": "^0.22.4",
"lazy-collections": "^0.8.0"
}
}