-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.09 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@tempoxyz/lints",
"version": "0.1.1",
"description": "Shared ast-grep lint rules for Tempo projects",
"type": "module",
"bin": {
"@tempoxyz/lints": "./bin/tempo-lints.ts"
},
"files": [
"bin/",
"src/",
"scripts/shared.ts",
"scripts/post-pr-comment.ts",
"action.yml"
],
"scripts": {
"test": "pnpm test:rust && pnpm test:typescript && pnpm test:shared-rules",
"test:rust": "sg test --config src/rust/sgconfig.yml",
"test:typescript": "sg test --config src/typescript/sgconfig.yml",
"test:shared": "sg test --config src/shared/sgconfig.yml",
"test:shared-rules": "vitest run",
"test:update-snapshots": "sg test --config src/shared/sgconfig.yml --update-all && sg test --config src/rust/sgconfig.yml --update-all && sg test --config src/typescript/sgconfig.yml --update-all",
"test:update-shared-snapshots": "sg test --config src/shared/sgconfig.yml --update-all",
"check": "pnpm typecheck && biome check --write --unsafe",
"check:biome": "biome check --write --unsafe",
"typecheck": "tsgo --project tsconfig.json --noEmit",
"lint": "biome check",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tempoxyz/lints.git"
},
"keywords": [
"ast-grep",
"linter",
"lint",
"rust",
"typescript",
"static-analysis"
],
"author": "Tempo Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/tempoxyz/lints/issues"
},
"homepage": "https://github.com/tempoxyz/lints#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@changesets/cli": "^2.30.0",
"@types/node": "^25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260122.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"dependencies": {
"@ast-grep/cli": "^0.40.5",
"commander": "^12.1.0"
},
"engines": {
"node": ">=18"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.12.0",
"onFail": "download"
}
},
"packageManager": "pnpm@10.28.1",
"pnpm": {
"onlyBuiltDependencies": [
"@ast-grep/cli"
]
}
}