-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.54 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "hq-cropper",
"version": "3.1.1",
"description": "Image cropper tool",
"main": "dist/bundle.cjs.js",
"module": "index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/types/index.d.ts",
"dist/bundle.cjs.js",
"dist/bundle.cjs.js.map"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/isalikov/hq-cropper.git"
},
"bugs": {
"url": "https://github.com/isalikov/hq-cropper/issues"
},
"homepage": "https://github.com/isalikov/hq-cropper#readme",
"keywords": [
"cropper",
"image"
],
"author": "Iakov Salikov <salikovpro@gmail.com>",
"license": "MIT",
"scripts": {
"build:dist": "rollup -c",
"build:docs": "webpack -c webpack.config.js",
"start": "webpack serve -c webpack.config.js",
"lint": "eslint ."
},
"babel": {
"presets": [
"@babel/env",
"@babel/preset-typescript"
],
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs",
"targets": {
"node": true
}
}
],
"@babel/preset-typescript"
]
}
}
},
"eslintConfig": {
"plugins": [
"prettier",
"@typescript-eslint"
],
"extends": [
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"import/prefer-default-export": [
"off"
],
"import/no-import-module-exports": [
"off"
],
"no-restricted-syntax": [
"off"
]
}
},
"eslintIgnore": [
"dist",
"docs",
"node_modules"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"prettier": "^3.2.2",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "^3.3.4",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}