-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "@booga/vgrid",
"version": "0.1.1",
"description": "8px-grid policy engine. Lints utility-class projects for spacing violations, raw palette refs, and repeated patterns. Telemetry, preflight gate, and programmatic API.",
"type": "module",
"bin": {
"vgrid": "./dist/cli.js",
"vpx": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests --max-warnings 0",
"test": "vitest run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"glob": "^10.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript-eslint": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"typescript": "^5.5.0",
"tsup": "^8.2.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}