73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "create-payload-app",
|
|
"version": "3.0.0-beta.90",
|
|
"homepage": "https://payloadcms.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/payloadcms/payload.git",
|
|
"directory": "packages/create-payload-app"
|
|
},
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
"./types": {
|
|
"import": "./src/types.ts",
|
|
"require": "./src/types.ts"
|
|
},
|
|
"./commands": {
|
|
"import": "./src/lib/init-next.ts",
|
|
"require": "./src/lib/init-next.ts",
|
|
"types": "./src/lib/init-next.ts"
|
|
},
|
|
"./lib/*": {
|
|
"import": "./src/lib/*",
|
|
"require": "./src/lib/*",
|
|
"types": "./src/lib/*"
|
|
},
|
|
"./utils/*": {
|
|
"import": "./src/utils/*",
|
|
"require": "./src/utils/*",
|
|
"types": "./src/utils/*"
|
|
}
|
|
},
|
|
"bin": {
|
|
"create-payload-app": "bin/cli.js"
|
|
},
|
|
"files": [
|
|
"package.json",
|
|
"dist",
|
|
"bin"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm pack-template-files && pnpm typecheck && pnpm build:swc",
|
|
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
|
|
"clean": "rimraf {dist,*.tsbuildinfo}",
|
|
"pack-template-files": "node --no-deprecation --import @swc-node/register/esm-register src/scripts/pack-template-files.ts",
|
|
"prepublishOnly": "pnpm clean && pnpm build",
|
|
"test": "jest",
|
|
"typecheck": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.7.0",
|
|
"@sindresorhus/slugify": "^1.1.0",
|
|
"@swc/core": "1.7.10",
|
|
"arg": "^5.0.0",
|
|
"chalk": "^4.1.0",
|
|
"comment-json": "^4.2.3",
|
|
"degit": "^2.8.4",
|
|
"esprima-next": "^6.0.3",
|
|
"execa": "^5.0.0",
|
|
"figures": "^6.1.0",
|
|
"fs-extra": "^9.0.1",
|
|
"globby": "11.1.0",
|
|
"terminal-link": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/degit": "^2.8.3",
|
|
"@types/esprima": "^4.0.6",
|
|
"@types/fs-extra": "^9.0.12",
|
|
"@types/jest": "29.5.12",
|
|
"@types/node": "20.12.5"
|
|
}
|
|
}
|