-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "pixilet",
"version": "1.0.0",
"private": true,
"description": "Monorepo containing most of PixiLet's codebase",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "eslint . --ext .ts && prettier --check .",
"lint:fix": "eslint . --ext .ts --fix && prettier --write .",
"_build": "pnpm clean && tsc -b tsconfig.build.json && pnpm -r build",
"build": "pnpm clean && pnpm -r build",
"_dev": "pnpm clean && tsc -b tsconfig.build.json -w",
"dev": "pnpm -r dev",
"clean": "tsc -b tsconfig.build.json --clean",
"test": "vitest --run",
"test:ui": "vitest --ui",
"release": "pnpm i && pnpm -r build && bumpp package.json packages/*/package.json --commit --push --tag"
},
"license": "MPL-2.0",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@recodive/configs": "^1.7.6",
"@recodive/eslint-config": "^1.7.6",
"@rushstack/eslint-patch": "^1.7.2",
"@types/node": "^20.11.20",
"@vitest/browser": "^1.3.1",
"@vitest/coverage-istanbul": "^1.3.1",
"@vitest/ui": "^1.3.1",
"bumpp": "^9.3.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"playwright": "^1.41.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"packageManager": "pnpm@8.15.2",
"engines": {
"node": "^20.0.0"
}
}