-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "react-swipe-to-delete-ios",
"version": "2.1.0",
"homepage": "https://arnaudambro.github.io/react-swipe-to-delete-ios/",
"author": "@arnaudambro",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:arnaudambro/react-swipe-to-delete-ios.git"
},
"description": "A React Component that mimic the behavior of line deletion in iOS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build-and-publish": "npm run rollup && git push && npm publish",
"rollup": "rollup -c",
"update-version": "node ./update-version.js"
},
"keywords": [
"react",
"swipe to delete",
"swipeable",
"delete",
"ios"
],
"peerDependencies": {
"react": "^16.18.0 || ^17 || ^18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.73.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"semver": "^6.3.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.0.4"
}
}