-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.25 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
{
"name": "@ylide/widget",
"version": "1.4.0",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "A widget for Ylide Mailbox",
"main": "./dist/index.min.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ylide-io/widget.git"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "webpack"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"simple-import-sort"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"eslint": "8.36.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"prettier": "2.8.7",
"ts-loader": "9.4.2",
"typescript": "5.0.4",
"webpack": "5.78.0",
"webpack-cli": "5.0.1"
}
}