-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
{
"name": "el-animate",
"version": "1.3.0",
"description": "Easily animate html elements using css and control it with js",
"homepage": "https://github.com/putnik-projects/el-animate",
"repository": {
"type": "git",
"url": "https://github.com/putnik-projects/el-animate"
},
"bugs": "https://github.com/putnik-projects/el-animate/issues",
"keywords": [
"css",
"animation",
"transition",
"css-animation",
"animate",
"transform",
"dom"
],
"author": "Nikita Putilin <[email protected]> (https://github.com/putnik-projects)",
"license": "MIT",
"type": "module",
"main": "./dist/el-animate.umd.js",
"module": "./dist/el-animate.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/el-animate.es.js",
"require": "./dist/el-animate.umd.js"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
"defaults"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsup ./src/index.ts --dts-only",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"format": "prettier . --write",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"prepublishOnly": "npm run type-check && npm run format && npm run lint && npm run build"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache",
"*.ts": "bash -c tsc --noEmit",
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.3.5"
}
}