@pro-functional/objects
Advanced tools
+15
| # @pro-functional/objects | ||
| ## 0.1.1 | ||
| ### Patch Changes | ||
| - d66db79: Simplify package publish with yarn tools | ||
| ## 0.1.0 | ||
| ### Minor Changes | ||
| - 5081ba3: - Extract function utilities to @pro-functional/functions | ||
| - Extract object utilities to @pro-functional/objects | ||
| - Extract basic features to @pro-basic/objects |
+54
-53
| { | ||
| "$schema": "https://json.schemastore.org/package.json", | ||
| "name": "@pro-functional/objects", | ||
| "version": "0.1.0", | ||
| "author": { | ||
| "name": "Harish Prakash", | ||
| "email": "harish.email@icloud.com", | ||
| "url": "https://harish-prakash.github.io/" | ||
| }, | ||
| "scripts": { | ||
| "build:cjs": "esbuild src/index.ts --bundle --outdir=dist/cjs --sourcemap --minify --tsconfig=tsconfig.build.json --format=cjs", | ||
| "build:esm": "esbuild src/index.ts --bundle --outdir=dist/esm --sourcemap --minify --tsconfig=tsconfig.build.json --format=esm", | ||
| "build:types": "tsc --project tsconfig.build.json", | ||
| "build": "yarn build:cjs && yarn build:esm && yarn build:types", | ||
| "build!": "yarn clean && yarn build", | ||
| "clean": "rimraf ./dist" | ||
| }, | ||
| "license": "MIT", | ||
| "description": "Tools to simplify pure functions", | ||
| "keywords": [ | ||
| "functional", | ||
| "programming", | ||
| "tools", | ||
| "utilities", | ||
| "pure functions" | ||
| ], | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/harish-prakash/pro-functional.git", | ||
| "directory": "packages/objects" | ||
| }, | ||
| "publishConfig": { | ||
| "access": "public", | ||
| "registry": "https://registry.npmjs.org/" | ||
| }, | ||
| "main": "./dist/cjs/index.js", | ||
| "types": "./dist/src/index.d.ts", | ||
| "files": [ | ||
| "./dist", | ||
| "!**/tsconfig.build.tsbuildinfo" | ||
| ], | ||
| "exports": { | ||
| ".": { | ||
| "node": "./dist/cjs/index.js", | ||
| "types": "./dist/src/index.d.ts", | ||
| "import": "./dist/esm/index.js", | ||
| "default": "./dist/cjs/index.js" | ||
| } | ||
| }, | ||
| "devDependencies": { | ||
| "esbuild": "0.24.2", | ||
| "rimraf": "6.0.1", | ||
| "typescript": "5.7.3" | ||
| "$schema": "https://json.schemastore.org/package.json", | ||
| "name": "@pro-functional/objects", | ||
| "version": "0.1.1", | ||
| "author": { | ||
| "name": "Harish Prakash", | ||
| "email": "harish.email@icloud.com", | ||
| "url": "https://harish-prakash.github.io/" | ||
| }, | ||
| "scripts": { | ||
| "build:cjs": "esbuild src/index.ts --bundle --outdir=dist/cjs --sourcemap --minify --tsconfig=tsconfig.build.json --format=cjs", | ||
| "build:esm": "esbuild src/index.ts --bundle --outdir=dist/esm --sourcemap --minify --tsconfig=tsconfig.build.json --format=esm", | ||
| "build:types": "tsc --project tsconfig.build.json", | ||
| "build": "yarn build:cjs && yarn build:esm && yarn build:types", | ||
| "build!": "yarn clean && yarn build", | ||
| "publish": "yarn npm publish --tolerate-republish", | ||
| "clean": "rimraf ./dist" | ||
| }, | ||
| "license": "MIT", | ||
| "description": "Tools to simplify pure functions", | ||
| "keywords": [ | ||
| "functional", | ||
| "programming", | ||
| "tools", | ||
| "utilities", | ||
| "pure functions" | ||
| ], | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/harish-prakash/pro-functional.git", | ||
| "directory": "packages/objects" | ||
| }, | ||
| "publishConfig": { | ||
| "access": "public", | ||
| "registry": "https://registry.npmjs.org/" | ||
| }, | ||
| "main": "./dist/cjs/index.js", | ||
| "types": "./dist/src/index.d.ts", | ||
| "files": [ | ||
| "./dist", | ||
| "!**/tsconfig.build.tsbuildinfo" | ||
| ], | ||
| "exports": { | ||
| ".": { | ||
| "node": "./dist/cjs/index.js", | ||
| "types": "./dist/src/index.d.ts", | ||
| "import": "./dist/esm/index.js", | ||
| "default": "./dist/cjs/index.js" | ||
| } | ||
| } | ||
| }, | ||
| "devDependencies": { | ||
| "esbuild": "0.24.2", | ||
| "rimraf": "6.0.1", | ||
| "typescript": "5.7.3" | ||
| } | ||
| } |
4399
4.69%8
14.29%