-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
87 lines (87 loc) · 2.12 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
{
"name": "vite-plugin-vconsole",
"version": "2.1.1",
"description": "vite plugin vconsole",
"main": "dist/main.js",
"exports": {
".": {
"types": "./dist/main.d.ts",
"require": "./dist/main.js",
"import": "./dist/main.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "husky install",
"log": "npx conventional-changelog --config ./node_modules/@commitlint/cli -i CHANGELOG.md -s -r 0",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vadxq/vite-plugin-vconsole.git"
},
"keywords": [
"vite",
"vconsole"
],
"author": "vadxq",
"license": "MIT",
"bugs": {
"url": "https://github.com/vadxq/vite-plugin-vconsole/issues"
},
"homepage": "https://github.com/vadxq/vite-plugin-vconsole#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/node": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"conventional-changelog-cli": "^3.0.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"tsup": "^7.1.0",
"typescript": "^5.1.3",
"vconsole": "^3.15.1",
"vite": "^4.3.9"
},
"peerDependencies": {
"vconsole": "^3.15.1"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es2021": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-debugger": "off",
"no-console": "off"
}
}
}