UNPKG

how-to-build-npm-package

Version:

Projeto modelo para ilustrar e orientar o passo a passo para construção de um pacote/biblioteca NPM

40 lines (39 loc) 1.03 kB
{ "name": "how-to-build-npm-package", "version": "1.0.2", "description": "Projeto modelo para ilustrar e orientar o passo a passo para construção de um pacote/biblioteca NPM ", "main": "/src/index.ts", "source": "src/index.ts", "types": "./dist/index.d.ts", "scripts": { "clean": "rm -rf dist", "build": "npm run clean && tsc && cp package.json README.md ./dist", "test": "jest" }, "repository": { "type": "git", "url": "https://github.com/DIGOARTHUR/basic-mathjs-example.git" }, "keywords": [ "NPM", "Tutorial", "Building", "Test", "Library", "Package" ], "author": "@digoarthur", "license": "MIT", "bugs": { "url": "https://github.com/DIGOARTHUR/basic-mathjs-example/issues" }, "homepage": "https://github.com/DIGOARTHUR/basic-mathjs-example#readme", "devDependencies": { "@types/jest": "^29.5.8", "@types/react": "^18.2.33", "jest": "^29.7.0", "react": "^18.2.0", "ts-jest": "^29.1.1", "typescript": "^5.2.2" } }