-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.32 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
{
"name": "crypto-coins-auto-click-bot",
"version": "1.1.19",
"private": false,
"homepage": "https://github.com/kostia7alania/crypto-coins-autoclick-bot",
"updateURL": "https://github.com/kostia7alania/crypto-coins-autoclick-bot/raw/main/dist/index.user.js",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"files": [
"dist/*",
"src"
],
"lint-staged": {
"*.{ts,js}": [
"npm run pre-commit-ts",
"npm run lint:prettier"
]
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:watch": "vite build --watch --mode watch",
"test:unit": "vitest",
"test:gitlab": "vitest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"lint:gitlab": "eslint --exit-on-fatal-error --format gitlab . --ext .ts",
"lint:prettier": "prettier ./src -w --ignore-unknown",
"pre-commit": "lint-staged",
"prepare": "husky",
"pre-commit-ts": "vue-tsc --noEmit && eslint --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/eslint": "^8.56.10",
"@types/jsdom": "^21.1.6",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-vue": "^5.0.4",
"change-case": "^5.4.4",
"eslint": "^9.2.0",
"eslint-formatter-gitlab": "5.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsonc": "2.15.1",
"eslint-plugin-no-secrets": "1.0.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sonarjs": "1.0.3",
"eslint-plugin-unicorn": "53.0.0",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-singlefile": "^2.0.1",
"vite-plugin-static-copy": "^1.0.4",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.17"
},
"engines": {
"pnpm": ">=8.15.5",
"node": ">=18.18.2"
},
"dependencies": {
"conventional-changelog-conventionalcommits": "^8.0.0",
"semantic-release": "^23.1.1",
"vue": "^3.4.27"
}
}