-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.73 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.73 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
{
"name": "attune",
"version": "0.9.0",
"description": "Local-first CLI tool for comprehensive code quality checks",
"type": "module",
"main": "./dist/index.js",
"bin": {
"attune": "./dist/index.js"
},
"files": [
"dist/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup && node -e \"const fs=require('fs');const p=require('path');fs.mkdirSync('dist/rules/functions',{recursive:true});fs.readdirSync('src/rules/functions').filter(f=>f.endsWith('.json')).forEach(f=>fs.copyFileSync(p.join('src/rules/functions',f),p.join('dist/rules/functions',f)))\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --config vitest.coverage.config.ts --coverage --coverage.all=false",
"build:types": "tsc --emitDeclarationOnly",
"lint": "eslint src --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts' --fix",
"lint:view": "eslint src --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts'",
"all": "npm run lint && npm run build && npm run test:coverage",
"attune": "node ./dist/index.js",
"attune:check": "node ./dist/index.js analyze . --security",
"attune:ci": "node ./dist/index.js analyze .",
"prepublishOnly": "npm run build",
"json2html": "npx tsx scripts/json-to-html.ts",
"json2fullhtml": "npx tsx scripts/json-to-html.ts",
"find-rules": "node scripts/find-rules.js",
"list-extensions": "node scripts/list-extension-rules.js",
"docs:rules": "node scripts/generate-rules-docs.js",
"prepare": "husky install",
"build:vscode": "cd vscode-extension && npm install && npm run compile",
"package:vscode": "cd vscode-extension && npx vsce package",
"build:mcp": "cd mcp-server && npm install && npm run build",
"start:mcp": "cd mcp-server && npm run start"
},
"keywords": [
"cli",
"code-quality",
"security",
"linting",
"static-analysis"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"json-function-engine": "^0.9.2",
"ts-morph": "^23.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.1.8",
"@vscode/vsce": "^3.7.1",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.30.0",
"husky": "^9.0.0",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"tsup": "^8.3.0",
"typescript": "^5.7.2",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}