UNPKG

@ikona/cli

Version:
82 lines 1.95 kB
{ "name": "@ikona/cli", "version": "0.2.1", "description": "Ikona CLI", "author": "Ivica Batinić <ivicabatinic123@gmail.com", "keywords": [ "typescript", "cli", "SVG sprite", "illustration", "assets", "generator" ], "repository": { "type": "git", "url": "https://github.com/isBatak/ikona" }, "license": "MIT", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "bin": { "ikona": "./dist/cli.js" }, "exports": { ".": { "source": "./src/index.ts", "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } }, "./package.json": "./package.json" }, "import": { "#mock-fs": { "default": "./__tests__/mock-fs.ts" } }, "sideEffects": false, "publishConfig": { "access": "public" }, "files": [ "dist/**/*", "*.d.ts", "!dist/**/*.test.js" ], "devDependencies": { "@types/node": "^20.9.0", "@typescript-eslint/eslint-plugin": "^6.10.0", "@typescript-eslint/parser": "^6.10.0", "eslint": "^8.53.0", "husky": "^8.0.3", "lint-staged": "^15.1.0", "pkg": "^5.8.1", "prettier": "3.2.5", "rimraf": "^5.0.5", "ts-node": "^10.9.1", "tsup": "^8.0.0", "typescript": "^5.2.2" }, "dependencies": { "@types/fs-extra": "^11.0.4", "bundle-n-require": "^1.0.1", "commander": "^11.1.0", "escalade": "^3.1.1", "fs-extra": "^11.1.1", "glob": "^10.3.10", "node-html-parser": "^6.1.11", "svgo": "^3.0.4" }, "scripts": { "clean": "rimraf ./dist/ ./exec/", "build": "tsup src --format=esm,cjs --dts --no-splitting --shims", "build-fast": "tsup src --format=esm,cjs --no-dts --no-splitting --shims", "dev": "pnpm build-fast --watch src", "bundle": "pnpm run build && pkg . --out-dir ./exec/" } }