-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.09 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": "@kaze-style/monorepo",
"version": "0.0.0",
"author": "Taishi Naritomi",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"playground/*"
],
"scripts": {
"clean": "tsx scripts/clean.ts",
"build": "turbo run build --force",
"build:packages": "turbo run build --filter=./packages/*",
"dev": "turbo run dev",
"dev:packages": "turbo run dev --filter=./packages/*",
"test": "run-p test:*",
"test:vitest": "vitest run",
"test:swc-plugin": "npm run test -w @kaze-style/swc-plugin",
"code:fix": "run-s code:fix:*",
"code:fix:swc-plugin": "npm run code-fix -w @kaze-style/swc-plugin",
"code:fix:lint": "eslint . --fix --ignore-path .gitignore",
"code:fix:format": "prettier . --write --ignore-path .gitignore",
"code:check": "run-p code:check:*",
"code:check:swc-plugin": "npm run code-check -w @kaze-style/swc-plugin",
"code:check:type": "turbo run code:check:type --parallel",
"code:check:lint": "eslint . --ignore-path .gitignore",
"code:check:format": "prettier . --check --ignore-path .gitignore",
"code:check:exports": "turbo run code:check:exports --filter=./packages/* --parallel",
"readme:copy": "tsx scripts/readme.ts copy README.md",
"readme:check": "tsx scripts/readme.ts check README.md",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@tsconfig/strictest": "^2.0.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-c8": "^0.31.0",
"arg": "^5.0.2",
"benny": "^3.7.1",
"esbuild": "^0.17.18",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unused-imports": "^2.0.0",
"fs-extra": "^11.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"process": "^0.11.10",
"publint": "^0.1.11",
"rimraf": "^5.0.0",
"tsx": "^3.12.7",
"turbo": "^1.9.3",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
}
}