-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "apex-launcher",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"prepare": "node ./.husky/setup.mjs",
"husky:pre-commit": "lint-staged",
"husky:commit-msg": "commitlint --edit ${1}",
"test": "pnpm run build:references && pnpm run eslint && pnpm run tscheck",
"eslint": "eslint '**/*.{js,jsx,ts,tsx,vue}' --quiet",
"build:references": "tsc --build",
"tscheck": "pnpm -r --parallel exec tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Semibold/Apex-Launcher.git"
},
"author": "Aqours",
"license": "MIT",
"bugs": {
"url": "https://github.com/Semibold/Apex-Launcher/issues"
},
"homepage": "https://github.com/Semibold/Apex-Launcher#readme",
"browserslist": [
"Firefox ESR",
"> 1% in CN",
"> 2% in US",
"last 5 versions",
"not ie 6-11"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@changesets/cli": "2.27.1",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"ci-info": "4.0.0",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"npm-check-updates": "16.14.18",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.3"
}
}