-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@chaocore/ripple",
"description": "The very easy, performance and flexible to use JavaScript/TypeScript library for creating a ripple effect.",
"version": "1.1.3",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js"
},
"unpkg": "./dist/iife/index.min.js",
"files": [
"dist"
],
"scripts": {
"build": "yarn build:clean && yarn build:lib && yarn build:types",
"build:lib": "rollup -c --configPlugin typescript",
"build:types": "yarn tsc --project tsconfig.declaration.json",
"build:clean": "rimraf dist",
"all:checks": "yarn ts:check && yarn eslint:check",
"ts:check": "yarn tsc --noEmit",
"eslint:check": "yarn eslint .",
"prepare": "husky",
"postinstall": "husky"
},
"homepage": "https://github.com/Kipicenko/chaocore-ripple#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Kipicenko/chaocore-ripple.git"
},
"bugs": {
"url": "https://github.com/Kipicenko/chaocore-ripple/issues"
},
"lint-staged": {
"*.ts": [
"yarn tsc-files --noEmit",
"yarn eslint:check"
]
},
"keywords": [
"ripple",
"ripple-effect",
"ripple-animation",
"wave",
"wave-effect",
"wave-animation",
"effect",
"animation",
"javascript",
"typescript",
"native-js",
"react",
"react-ripple",
"react-wave",
"react-hooks",
"hooks"
],
"author": "Kipicenko",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"packageManager": "yarn@4.2.2"
}