-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
50 lines (50 loc) · 1.45 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
{
"author": "Mikhail Babynichev",
"license": "GPL-3.0",
"version": "4.1.3",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
"start": "pnpm run -C packages/tosu run:dev",
"build:win": "pnpm run -C packages/tosu compile:win",
"build:linux": "pnpm run -C packages/tosu compile:linux",
"release": "standard-version",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prettier:ci": "prettier --check \"**/*.{js,jsx,ts,tsx,css}\"",
"lint:ci": "eslint --ext .ts,.d.ts .",
"lint:fix": "eslint --fix --ext .ts,.d.ts ."
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.11.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^3.2.5",
"standard": "^17.1.0",
"standard-version": "^9.5.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*.{js,ts}": [
"pnpm run prettier:fix",
"pnpm run lint:fix"
]
},
"homepage": "https://github.com/tosuapp/tosu#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tosuapp/tosu.git"
},
"bugs": {
"url": "https://github.com/tosuapp/tosu/issues"
},
"engines": {
"node": ">=20.11.1"
}
}