-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.17 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.17 KB
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
{
"name": "rslint-monorepo",
"version": "0.5.1",
"private": true,
"description": "Rslint Monorepo",
"homepage": "https://github.com/web-infra-dev/rslint#readme",
"bugs": {
"url": "https://github.com/web-infra-dev/rslint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-infra-dev/rslint.git"
},
"license": "MIT",
"scripts": {
"build": "pnpm -r --filter=@rslint/test-tools... --filter=rslint... build",
"build:npm": "zx scripts/build-npm.mjs",
"build:website": "pnpm --filter @rslint/core run build:js && pnpm --filter=!@rslint/core --filter @rslint/website... -r build",
"bench:cli": "pnpm --filter rslint-bench-cli run bench",
"bench:go": "go test -bench=. -benchtime=5s ./tests/bench-go/",
"check-spell": "pnpx cspell lint --no-progress --show-context",
"version": "zx scripts/version.mjs",
"release": "pnpm publish -r --no-git-checks",
"publish:vsce": "zx scripts/publish-marketplace.mjs",
"publish:ovsx": "zx scripts/publish-marketplace.mjs --marketplace=ovsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm -r --filter=@rslint/test-tools... --filter=rslint... test",
"test:go": "go test ./internal/...",
"typecheck": "pnpm tsgo -b tsconfig.json",
"lint": "rslint --config rslint.config.ts",
"lint:go": "golangci-lint run ./cmd/... ./internal/...",
"format:go": "golangci-lint fmt ./cmd/... ./internal/...",
"prepare": "husky",
"migrate:tests": "sg scan -r ast-grep-rule.yml ./packages/rslint-test-tools/tests/typescript-eslint/rules/**/*.test.ts --update-all"
},
"devDependencies": {
"@rslint/core": "workspace:*",
"@rstest/core": "^0.9.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "3.8.1",
"typescript": "5.9.3",
"zx": "8.8.5",
"@typescript/native-preview": "7.0.0-dev.20250904.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,css,scss,md,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.33.0",
"engines": {
"pnpm": ">=10.33.0"
},
"files": [],
"dependencies": {
"@types/react": "^19.1.9"
}
}