-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
{
"name": "repeater-scope",
"version": "3.0.0",
"description": "The utils for repeated item scope event handlers in Velo by Wix",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "rollup -c",
"lint": "tsc && eslint 'src/**/*.ts'"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"corvid-types": "^0.4.454",
"eslint": "^8.56.0",
"rollup": "^4.12.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm run build"
},
"sideEffects": false,
"keywords": [
"wix",
"wixcode",
"editorx",
"velo"
],
"files": [
"dist"
],
"author": {
"name": "Alexander Zaytsev",
"email": "[email protected]",
"url": "https://x.com/_shoonia"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shoonia/repeater-scope.git"
},
"bugs": {
"url": "https://github.com/shoonia/repeater-scope/issues"
},
"homepage": "https://github.com/shoonia/repeater-scope#readme",
"license": "MIT"
}