strapi/packages/utils/pack-up/package.json
Alexandre Bodin da634b0951 v4.15.4
2023-11-11 12:17:57 +01:00

99 lines
2.4 KiB
JSON

{
"name": "@strapi/pack-up",
"version": "4.15.4",
"description": "Simple tools for creating interoperable CJS & ESM packages.",
"keywords": [
"strapi",
"package",
"cjs",
"esm",
"bundling",
"build",
"interoperable",
"tools"
],
"repository": {
"type": "git",
"url": "https://github.com/strapi/strapi.git",
"directory": "packages/utils/pack-up"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
}
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"bin": "./bin/pack-up.js",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "node -r esbuild-register scripts/build",
"check": "node -r esbuild-register scripts/check",
"clean": "run -T rimraf ./dist",
"lint": "run -T eslint .",
"prepublishOnly": "yarn clean && yarn build",
"test": "test:ts && test:unit",
"test:ts": "run -T tsc --noEmit",
"test:unit": "run -T jest",
"watch": "node -r esbuild-register scripts/watch"
},
"dependencies": {
"@vitejs/plugin-react": "4.1.0",
"boxen": "5.1.2",
"browserslist-to-esbuild": "1.2.0",
"chalk": "4.1.2",
"chokidar": "3.5.3",
"commander": "8.3.0",
"esbuild": "0.19.2",
"esbuild-register": "3.5.0",
"get-latest-version": "5.1.0",
"git-url-parse": "13.1.0",
"ini": "4.1.1",
"ora": "5.4.1",
"outdent": "0.8.0",
"pkg-up": "3.1.0",
"prettier": "2.8.4",
"prettier-plugin-packagejson": "2.4.5",
"prompts": "2.4.2",
"rxjs": "7.8.1",
"typescript": "5.2.2",
"vite": "4.4.9",
"yup": "0.32.9"
},
"devDependencies": {
"@strapi/pack-up": "4.15.4",
"@types/git-url-parse": "9.0.1",
"@types/ini": "1.3.31",
"@types/prompts": "2.4.4",
"eslint-config-custom": "4.15.4",
"rimraf": "3.0.2"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
}
}