create-backan
Version:
Quickly create a backan application to get started
60 lines • 1.37 kB
JSON
{
"name": "create-backan",
"version": "0.2.8",
"description": "Quickly create a backan application to get started",
"keywords": [
"api",
"backend",
"bin",
"create",
"creator",
"library",
"openapi",
"pigeonposse",
"pp",
"rest-api"
],
"homepage": "https://backan.pigeonposse.com",
"bugs": {
"url": "https://github.com/pigeonposse/backan/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pigeonposse/backan",
"directory": "packages/create"
},
"license": "GPL-3.0",
"type": "module",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
},
"./types": "./dist/main.d.ts"
},
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"bin": "dist/bin.js",
"files": [
"data",
"dist"
],
"dependencies": {
"creatium": "0.1.12"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "pnpm run --sequential \"/^build:.*/\"",
"build:_rm": "rimraf dist && rimraf build",
"build:lib": "vite build",
"dev": "tsx src/bin.ts",
"example": "tsx examples/main.ts",
"lint": "pnpm eslint src",
"test": "pnpm run --sequential \"/^test:.*/\"",
"test:unit": "vitest run src --passWithNoTests"
}
}