typescript-file-copy-plugin
Version:
[](https://www.npmjs.com/package/typescript-file-copy-plugin)  [ • 2.16 kB
JSON
{
"name": "typescript-file-copy-plugin",
"version": "1.0.1",
"description": "",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts",
"changeset": "changeset",
"add-changeset": "changeset add",
"clean": "rm -rf node_modules dist",
"debug": "ts-node-dev --inspect -- src/index.ts",
"debug:break": "ts-node-dev --inspect-brk -- src/index.ts",
"format": "biome format src --write",
"lint": "npx @biomejs/biome lint src",
"lint:check": "npx @biomejs/biome check --apply-unsafe src",
"lint-staged": "lint-staged",
"prepare": "husky install && ts-patch install -s",
"release": "changeset publish",
"test": "vitest",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"version-packages": "changeset version"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"file",
"copy",
"build",
"typescript",
"plugin",
"tsc",
"ts-patch"
],
"author": "Theo Gravity <theo@suteki.nu>",
"license": "MIT",
"homepage": "https://github.com/theogravity/typescript-file-copy-plugin",
"repository": {
"type": "git",
"url": "git@github.com:theogravity/typescript-file-copy-plugin.git"
},
"bugs": {
"url": "https://github.com/theogravity/typescript-file-copy-plugin/issues"
},
"dependencies": {
"cpx2": "^7.0.1",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.6.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"tsup": "^8.0.2",
"ts-patch": "^3.2.0",
"typescript": "^5.4.5",
"vitest": "^1.4.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,json}": [
"npm run format",
"npm run lint:check"
]
},
"engines": {
"node": ">=18"
}
}