-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "web-touch-ripple",
"version": "1.4.0",
"description": "This package provides visual representation of the pointer event to users.",
"repository": "https://github.com/MTtankkeo/web_touch_ripple",
"bugs": "https://github.com/MTtankkeo/web_touch_ripple/issues",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.umd.js",
"default": "./dist/index.esm.js"
},
"./jsx": {
"types": "./jsx/dist/types/index.d.ts",
"require": "./jsx/dist/index.js",
"default": "./jsx/dist/index.js"
}
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"keywords": [
"web",
"frontend",
"client-side",
"touch",
"effect",
"touch effect",
"material"
],
"author": "Dev Ttangkong",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.13.0",
"rollup-plugin-typescript2": "^0.36.0",
"terser": "^5.29.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@web-package/utility": "^1.2.20"
}
}