-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.56 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@makerx/verify",
"version": "1.2.0",
"description": "A growing collection of code verifications that give AI coding agents back-pressure against writing hard-to-maintain code. Ships a CLI that orchestrates native + external checks by convention, plus a scaffolder for the checks and agent commands.",
"keywords": [
"ai",
"back-pressure",
"cli",
"code-quality",
"complexity",
"knip",
"maintainability",
"typescript",
"verification",
"verify"
],
"homepage": "https://github.com/MakerXStudio/verify#readme",
"bugs": {
"url": "https://github.com/MakerXStudio/verify/issues"
},
"license": "MIT",
"author": "MakerX",
"repository": {
"type": "git",
"url": "git+https://github.com/MakerXStudio/verify.git"
},
"bin": {
"verifyx": "./dist/cli.mjs"
},
"files": [
"dist",
"templates"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-s clean build:rollup",
"clean": "rimraf dist",
"build:rollup": "rollup --config rollup.config.mjs",
"prepare": "node scripts/dev-verifyx-bin.mjs",
"verify": "verifyx all",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --reporter=default --reporter=junit --outputFile=test-results.xml",
"audit": "better-npm-audit audit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^15.0.0",
"cross-spawn": "^7.0.6",
"enquirer": "^2.4.1",
"minimatch": "^10.2.5",
"typescript": "^6.0.3",
"unbash": "^4.0.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"better-npm-audit": "^3.11.0",
"jscpd": "^5.0.11",
"knip": "^6.25.0",
"npm-run-all2": "^9.0.2",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"rimraf": "^6.1.3",
"rollup": "^4.62.2",
"skott": "^0.35.11",
"tslib": "^2.8.1",
"vitest": "^4.1.10"
},
"peerDependencies": {
"jscpd": "^5.0.11",
"knip": "^6.25.0",
"skott": "^0.35.11"
},
"peerDependenciesMeta": {
"jscpd": {
"optional": true
},
"knip": {
"optional": true
},
"skott": {
"optional": true
}
},
"engines": {
"node": ">=24"
},
"allowScripts": {
"@parcel/watcher": false
}
}