mirror of
https://github.com/strapi/strapi.git
synced 2025-06-27 00:41:25 +00:00

chore: fetch template only if name matches name convention chore: linting chore: fix tests chore: fix npm scripts test: try to fix test
83 lines
2.0 KiB
JSON
83 lines
2.0 KiB
JSON
{
|
|
"name": "@strapi/cloud-cli",
|
|
"version": "5.8.1",
|
|
"description": "Commands to interact with the Strapi Cloud",
|
|
"keywords": [
|
|
"strapi",
|
|
"cloud",
|
|
"cli"
|
|
],
|
|
"homepage": "https://strapi.io",
|
|
"bugs": {
|
|
"url": "https://github.com/strapi/strapi/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/strapi/strapi.git"
|
|
},
|
|
"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"
|
|
}
|
|
],
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"source": "./src/index.ts",
|
|
"types": "./dist/src/index.d.ts",
|
|
"bin": "./bin/index.js",
|
|
"files": [
|
|
"./dist",
|
|
"./bin"
|
|
],
|
|
"scripts": {
|
|
"build": "run -T npm-run-all clean --parallel build:code build:types",
|
|
"build:code": "run -T rollup -c",
|
|
"build:types": "run -T tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
"clean": "run -T rimraf ./dist",
|
|
"lint": "run -T eslint .",
|
|
"test:unit": "run -T jest",
|
|
"watch": "run -T rollup -c -w"
|
|
},
|
|
"dependencies": {
|
|
"@strapi/utils": "5.8.1",
|
|
"axios": "1.7.4",
|
|
"boxen": "5.1.2",
|
|
"chalk": "4.1.2",
|
|
"cli-progress": "3.12.0",
|
|
"commander": "8.3.0",
|
|
"eventsource": "2.0.2",
|
|
"fast-safe-stringify": "2.1.1",
|
|
"fs-extra": "11.2.0",
|
|
"inquirer": "8.2.5",
|
|
"jsonwebtoken": "9.0.0",
|
|
"jwks-rsa": "3.1.0",
|
|
"lodash": "4.17.21",
|
|
"minimatch": "9.0.3",
|
|
"open": "8.4.0",
|
|
"ora": "5.4.1",
|
|
"pkg-up": "3.1.0",
|
|
"tar": "6.2.1",
|
|
"xdg-app-paths": "8.3.0",
|
|
"yup": "0.32.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cli-progress": "3.11.5",
|
|
"@types/eventsource": "1.1.15",
|
|
"@types/lodash": "^4.14.191",
|
|
"eslint-config-custom": "5.8.1",
|
|
"tsconfig": "5.8.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0 <=22.x.x",
|
|
"npm": ">=6.0.0"
|
|
}
|
|
}
|