New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-personality

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-personality - npm Package Compare versions

Comparing version 0.2.5 to 0.2.6

dist/cli.cjs

158

package.json
{
"name": "create-personality",
"version": "0.2.5",
"version": "0.2.6",
"description": "Library for crafting and sustaining AI personalities",

@@ -19,7 +19,7 @@ "keywords": [

],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
"homepage": "https://github.com/pigeonposse/personality",
"bugs": {
"url": "https://github.com/pigeonposse/personality/issues",
"email": "dev@pigeonposse.com"
},
"homepage": "https://github.com/pigeonposse/personality",
"repository": {

@@ -33,14 +33,3 @@ "type": "git",

},
"bugs": {
"url": "https://github.com/pigeonposse/personality/issues",
"email": "dev@pigeonposse.com"
},
"files": [
"dist"
],
"main": "dist/main.js",
"type": "module",
"bin": {
"personality": "./dist/cli.js"
},
"license": "GPL-3.0",
"author": "Alejo Malia <alejomalia@gmail.com>",

@@ -54,63 +43,83 @@ "contributors": [

],
"license": "GPL-3.0",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/main.d.mts",
"default": "./dist/main.mjs"
},
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.cjs"
}
}
},
"main": "dist/main.mjs",
"bin": {
"personality": "./dist/cli.mjs"
},
"files": [
"dist"
],
"dependencies": {
"@clack/prompts": "0.9.1",
"conf": "13.1.0",
"kleur": "4.1.5",
"update-notifier": "7.3.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.8",
"@chialab/esbuild-plugin-babel": "0.18.0",
"@chialab/esbuild-plugin-meta-url": "0.18.2",
"@commitlint/cli": "19.5.0",
"@pigeon-posse/eslint-config": "1.0.1",
"@dovenv/core": "1.3.0",
"@dovenv/theme-pigeonposse": "1.3.0",
"@rsbuild/core": "1.0.7",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"binarium": "0.1.1",
"commitizen": "4.3.1",
"commitlint-config-gitmoji": "2.3.1",
"cz-customizable": "7.2.1",
"cz-emoji": "1.3.2-canary.2",
"eslint": "8.57.0",
"eslint-plugin-align-assignments": "1.1.2",
"eslint-plugin-align-import": "1.0.0",
"eslint-plugin-canonical": "5.0.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "46.10.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsonc": "2.13.0",
"eslint-plugin-markdownlint": "0.5.0",
"eslint-plugin-package-json": "0.12.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-yaml": "0.5.0",
"typescript": "5.6.2",
"vite": "5.4.8"
"binarium": "2.0.6",
"typescript": "5.7.3"
},
"dependencies": {
"@clack/prompts": "0.7.0",
"conf": "13.0.1",
"kleur": "4.1.5",
"update-notifier": "7.3.1"
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.10.0"
},
"commitlint": {
"extends": [
"gitmoji"
],
"rules": {
"header-max-length": [
0,
"always",
100
]
}
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".dev/cz-config.cjs"
}
},
"extra": {
"id": "personality",
"productName": "Personality",
"libraryURL": "https://www.npmjs.com/package/sizium",
"licenseURL": "https://github.com/pigeonposse/sizium/blob/main/LICENSE",
"changelogURL": "https://github.com/pigeonposse/sizium/blob/main/packages/core/CHANGELOG.md",
"contributingURL": "https://github.com/pigeonposse/.github/blob/main/CONTRIBUTING.md",
"libraryID": "sizium",
"repoID": "sizium",
"rawRepoURL": "https://raw.githubusercontent.com/pigeonposse/sizium",
"docsURL": "https://docs.sizium.pigeonposse.com",
"type": "library",
"subtype": [
"bin",
"cli",
"env"
],
"collective": {
"id": "pigeonposse",
"name": "PigeonPosse",
"funding": "https://pigeonposse.com/?popup=donate",
"gh": "https://github.com/pigeonposse",
"about": "https://pigeonposse.com?popup=about",
"url": "https://pigeonposse.com",
"web": "https://pigeonposse.com",
"email": "dev@pigeonposse.com",
"socialUser": {
"twitter": "pigeonposse_",
"instagram": "pigeon.posse",
"medium": "pigeonposse"
},
"social": {
"twitter": "https://twitter.com/pigeonposse_",
"instagram": "https://www.instagram.com/pigeon.posse/",
"medium": "https://medium.com/@pigeonposse"
}
},
"scopes": [

@@ -129,10 +138,11 @@ {

"scripts": {
"dev": "vite build && node dist/cli.js",
"build": "pnpm run --sequential \"/build:.*/\"",
"build:lib": "vite build",
"build:bins": "rsbuild build -c .dev/build-lib.mjs && node .dev/build-bin.mjs",
"update-version": "changeset && changeset version",
"push": "git add . && cz && git push -f origin $@",
"push:main": "pnpm push main"
".": "dovenv",
"build": "pnpm build:lib && pnpm build:bin",
"build:bin": "rsbuild build -c .dovenv/rsbuild.config.js && binarium -c .dovenv/binarium.config.js",
"build:lib": "dovenv x unbuild",
"dev": "node src/cli.js",
"test": "pnpm run --sequential \"/test:.*/\"",
"test:ws-check": "dovenv check --silent",
"test:ws-transform": "dovenv transform --silent"
}
}
# Personality by _PIGEONPOSSE_
[![HEADER](docs/banner.png)](https://npmjs.com/package/create-personality)
[![HEADER](docs/public/banner.png)](https://npmjs.com/package/create-personality)

@@ -16,7 +16,7 @@ [![Web](https://img.shields.io/badge/Web-grey?style=flat-square)](https://pigeonposse.com/)

![EXPLANATION](docs/explanation.png)
![EXPLANATION](docs/public/explanation.png)
`Personality` is a library designed to customize the personality configuration of AI running locally. It allows users to define and adjust the traits, communication style, and behavior of their AI models in detail, ensuring responses are coherent and aligned with specific project goals. Ideal for developers looking to add a distinctive and human-like touch to their AI applications.
[![demo](docs/demo.gif)](https://npmjs.com/package/create-personality)
[![demo](docs/public/demo.gif)](https://npmjs.com/package/create-personality)

@@ -78,3 +78,3 @@ ## Features

*PigeonPosse* is a ✨ **code development collective** ✨ focused on creating practical and interesting tools that help developers and users enjoy a more agile and comfortable experience. Our projects cover various programming sectors and we do not have a thematic limitation in terms of projects.
_PigeonPosse_ is a ✨ **code development collective** ✨ focused on creating practical and interesting tools that help developers and users enjoy a more agile and comfortable experience. Our projects cover various programming sectors and we do not have a thematic limitation in terms of projects.

@@ -81,0 +81,0 @@ [![More](https://img.shields.io/badge/Read-more-grey?style=for-the-badge)](https://github.com/pigeonposse)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc