-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 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
54
{
"name": "kis-animate",
"version": "2.0.1",
"description": "Lightweight library that helps you to animate elements and text.",
"keywords": [
"animations",
"animate",
"css",
"keyframes"
],
"type": "module",
"private": false,
"main": "./dist/kis-animate.umd.cjs",
"module": "./dist/kis-animate.js",
"homepage": "https://github.com/kirillsakun/kis-animate#readme",
"bugs": {
"url": "https://github.com/kirillsakun/kis-animate/issues",
"email": "[email protected]"
},
"exports": {
".": {
"import": "./dist/kis-animate.js",
"require": "./dist/kis-animate.umd.cjs"
},
"./style": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.21",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.4",
"sass": "^1.58.0",
"stylelint": "^15.1.0",
"stylelint-color-format": "^1.1.0",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-recommended": "^10.0.1",
"stylelint-scss": "^4.4.0",
"stylelint-use-logical-spec": "^5.0.0",
"typescript": "^4.9.5",
"vite": "^4.1.1"
}
}