UNPKG

create-fff

Version:

Create FFF-related configuration files.

50 lines 1.14 kB
{ "name": "create-fff", "type": "module", "version": "1.0.0", "description": "Create FFF-related configuration files.", "author": "藍+85CD", "license": "WTFPL", "homepage": "https://fff.js.org", "repository": { "type": "git", "url": "https://github.com/importantimport/fff.git", "directory": "packages/create-fff" }, "bugs": "https://github.com/importantimport/fff/issues", "keywords": [ "fff", "fff-flavored-frontmatter", "typescript" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "bin": "./dist/index.js", "files": [ "dist" ], "dependencies": { "@clack/prompts": "^0.6.3", "minimist": "^1.2.8", "picocolors": "^1.0.0", "yaml": "^2.3.0" }, "devDependencies": { "@types/minimist": "^1.2.2" }, "scripts": { "dev": "tsx src/index.ts", "build": "tsup", "build:watch": "tsup --watch", "lint": "eslint src", "lint:fix": "eslint src --fix" } }