@liiift-studio/vf-clamp-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@liiift-studio/vf-clamp-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI for @liiift-studio/vf-clamp — restrict variable font axis ranges from the command line",
5
+ "type": "module",
6
+ "bin": {
7
+ "vf-clamp": "./dist/index.js"
8
+ },
9
+ "exports": {
10
+ "./package.json": "./package.json"
11
+ },
12
+ "files": ["dist", "LICENSE", "README.md"],
13
+ "scripts": {
14
+ "build": "tsc -p tsconfig.build.json && chmod +x dist/index.js",
15
+ "dev": "tsc -p tsconfig.build.json --watch",
16
+ "start": "node dist/index.js",
17
+ "test": "vitest run",
18
+ "test:coverage": "vitest run --coverage",
19
+ "prepublishOnly": "npm test && npm run build"
20
+ },
21
+ "dependencies": {
22
+ "@liiift-studio/vf-clamp": "^2.0.1",
23
+ "commander": "^12.0.0"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "^20.0.0",
27
+ "@vitest/coverage-v8": "^3.2.0",
28
+ "typescript": "^5.0.0",
29
+ "vitest": "^3.2.0"
30
+ },
31
+ "engines": {
32
+ "node": ">=18.0.0"
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/Liiift-Studio/vf-clamp-cli.git"
40
+ },
41
+ "keywords": ["variable-font", "font", "cli", "vf-clamp", "typography", "fonttools"],
42
+ "author": "Quinn Keaveney <quinn@liiift.studio>",
43
+ "license": "MIT"
44
+ }