-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.63 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
{
"name": "marucheck",
"version": "0.4.0",
"private": false,
"description": "Local-first independent verification tooling for MaruCheck",
"license": "MIT",
"type": "module",
"bin": {
"maru": "./dist/maru.cjs"
},
"files": [
"dist/maru.cjs",
"LICENSE"
],
"keywords": [
"ai",
"cli",
"developer-tools",
"mcp",
"qa",
"testing",
"verification"
],
"homepage": "https://github.com/Kidus-M/MaruCheck#readme",
"bugs": {
"url": "https://github.com/Kidus-M/MaruCheck/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kidus-M/MaruCheck.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run verify:version && tsc -b && npm run build:bundle",
"build:bundle": "esbuild packages/cli/src/index.ts --bundle --platform=node --format=cjs --target=node24 --external:typescript --legal-comments=eof --banner:js=\"// MaruCheck CLI - https://github.com/Kidus-M/MaruCheck\" --outfile=dist/maru.cjs",
"check": "npm run format:check && npm run lint && npm run typecheck && npm test && npm run build",
"clean": "tsc -b --clean",
"example": "node examples/quota-app/run.mjs",
"example:jest": "node examples/quota-app-jest/run.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"maru": "node packages/cli/dist/index.js",
"prepublishOnly": "npm run release:check",
"release:check": "npm run check && npm run verify:release-metadata && npm pack --dry-run --ignore-scripts --cache .npm-cache",
"test": "vitest run --configLoader native --pool=threads",
"test:acceptance:broken-subscription": "npm run build && node scripts/verify-broken-subscription.mjs",
"test:acceptance:invoice-memory": "npm run build && node scripts/verify-invoice-memory.mjs",
"test:acceptance:pull-request-check": "npm run build && node scripts/verify-pull-request-check.mjs",
"test:acceptance:semantic-drift": "npm run build && node scripts/verify-semantic-drift.mjs",
"test:watch": "vitest --configLoader native --pool=threads",
"typecheck": "tsc -b --pretty false",
"verify:release-metadata": "node scripts/verify-release-metadata.mjs",
"verify:version": "node scripts/verify-package-version.mjs"
},
"dependencies": {
"typescript": "^6.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"esbuild": "^0.28.2",
"eslint": "^10.8.1",
"prettier": "^3.9.6",
"typescript-eslint": "^8.67.0",
"vitest": "^4.1.10"
}
}