-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 939 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 939 Bytes
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
{
"name": "ui8px",
"version": "0.1.5",
"description": "CLI utility for validating UI8Kit class maps against an 8 + 4 spacing policy",
"author": "UI8Kit",
"license": "MIT",
"type": "module",
"keywords": [
"ui8px",
"ui8kit",
"cli",
"npx",
"npm",
"node",
"8px",
"validator",
"spacing"
],
"homepage": "https://github.com/ui8kit/ui8px-cli",
"bugs": {
"url": "https://github.com/ui8kit/ui8px-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ui8kit/ui8px-cli.git"
},
"bin": {
"ui8px": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "tsc -p tsconfig.build.json"
},
"files": [
"README.md",
"dist"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.8.0"
}
}