sdkscript
Version:
Set up a modern Cosmos app by running one command ⚛️
71 lines (70 loc) • 1.86 kB
JSON
{
"name": "sdkscript",
"version": "0.0.1",
"description": "Set up a modern Cosmos app by running one command ⚛️",
"author": "Dan Lynch <pyramation@gmail.com>",
"homepage": "https://github.com/cosmology-tech/create-cosmos-app#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"create-cosmos-app": "dist/create-cosmos-app.js",
"cca": "dist/create-cosmos-app.js"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist"
],
"scripts": {
"build:dist": "yarn tsc -p tsconfig.json --outDir dist --module commonjs || true",
"build:chmod": "chmod +x ./dist/create-cosmos-app.js",
"build": "npm run build:dist && npm run build:chmod",
"prepare": "npm run build",
"lint": "eslint .",
"format": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/create-cosmos-app"
},
"keywords": [
"cosmos",
"cosmology",
"create-cosmos-app",
"cosmos-kit"
],
"bugs": {
"url": "https://github.com/cosmology-tech/create-cosmos-app/issues"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"case": "1.6.3",
"eslint": "8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "8.0.3",
"jest": "^29.3.1",
"jest-in-case": "^1.0.2",
"prettier": "^2.1.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"ansi-colors": "4.1.3",
"dargs": "7.0.0",
"fuzzy": "0.1.3",
"inquirerer": "0.1.3",
"minimist": "1.2.7",
"mkdirp": "1.0.4",
"shelljs": "0.8.5"
}
}