UNPKG

nexious-library

Version:
160 lines (159 loc) 5.68 kB
{ "name": "nexious-library", "version": "2.9.2", "description": "Official database for nexious.tech", "type": "module", "types": "dist/@types", "main": "dist/esm/main.js", "style": "dist/css/index.css", "homepage": "https://github.com/carlos-hereee/nexious-library#readme", "author": "carlos-hereee <97hernandez.c@gmail.com>(https://www.nexious.tech)", "license": "MIT", "exports": { "./@nxs-atoms": { "import": { "types": "./dist/@types/components/atoms/index.d.ts", "default": "./dist/esm/components/atoms/index.js" } }, "./@nxs-molecules": { "import": { "types": "./dist/@types/components/molecules/index.d.ts", "default": "./dist/esm/components/molecules/index.js" } }, "./@nxs-organism": { "import": { "types": "./dist/@types/components/organism/index.d.ts", "default": "./dist/esm/components/organism/index.js" } }, "./@nxs-template": { "import": { "types": "./dist/@types/components/template/index.d.ts", "default": "./dist/esm/components/template/index.js" } }, "./@nxs-header": { "import": { "types": "./dist/@types/components/template/Header.d.ts", "default": "./dist/esm/components/template/Header.js" } }, "./@nxs-calendar": { "import": { "types": "./dist/@types/components/template/Calendar.d.ts", "default": "./dist/esm/components/template/Calendar.js" } }, "./@nxs-footer": { "import": { "types": "./dist/@types/components/template/Footer.d.ts", "default": "./dist/esm/components/template/Footer.js" } }, "./@nxs-paginate-form": { "import": { "types": "./dist/@types/components/template/PaginateForm.d.ts", "default": "./dist/esm/components/template/PaginateForm.js" } }, "./@nxs-math": { "import": { "default": "./dist/esm/math/index.js", "types": "./dist/@types/math/index.d.ts" } }, "./@index.css": "./dist/css/index.css", ".": { "import": { "types": "./dist/@types/main.d.ts", "default": "./dist/esm/main.js" } } }, "scripts": { "nodemon": "nodemon", "save:rename": "node ./scripts/save-rename.js", "renameFile": "bash ./scripts/renameFile.sh", "dev": "node ./scripts/run-all-watchers.js", "watchers": "node ./scripts/all-watchers.js", "watch:add-types": "node ./scripts/watcher-add-types.js --watch", "watch:5": "node ./scripts/watcher-rename-file.js --watch", "watch:1": "npx sass src/stylesheets:dist/css --watch", "watch:2": "tsc -p tsconfig.json --watch", "watch:3": "tsc-alias -p tsconfig.json --watch", "watch:lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"", "copy:esm": "copyfiles -u 1 src/**/*.html src/**/*.css src/**/*.scss dist/esm", "copy:css": "node ./copy-styles.js", "copy-styles:esm": "node --loader ts-node/esm .copy-styles.ts", "clean": "rimraf dist/ && npx prettier --write src/", "compile": "npm run compile:tsc && npm run compile:tsc-alias && npm run compile:css", "compile:tsc": "tsc -p tsconfig.json", "compile:cjs": "tsc --module commonjs --outDir dist/cjs", "compile:tsc-alias": "tsc-alias -p tsconfig.json dist/esm", "compile:alias@types": "tsc-alias -p tsconfig.json dist/@types", "compile:css": "npx sass src/stylesheets:dist/css", "pre-build": "npm unlink nexious-library && npm run clean && npm run compile", "build": "npm run clean && npm run compile", "build:tsup": "npm run clean && npm run compile:tsup && npm run sass", "build:alias": "npm run clean && npm run compile:alias && npm run sass", "release:patch": "npm run build && npm version patch && npm publish", "release:minor": "npm run build && npm version minor && npm publish", "release:major": "npm run build && npm version major && npm publish" }, "keywords": [ "css", "sass", "mobile-first", "responsive", "front-end", "react", "react-vite" ], "repository": { "type": "git", "url": "git+https://github.com/carlos-hereee/nexious-library.git" }, "files": [ "dist", "src/**/*.d.ts" ], "bugs": { "url": "https://github.com/carlos-hereee/nexious-library/issues" }, "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.4.2", "@fortawesome/free-brands-svg-icons": "^6.4.2", "@fortawesome/free-solid-svg-icons": "^6.4.0", "@fortawesome/react-fontawesome": "^0.2.0" }, "devDependencies": { "@types/jest": "^29.5.2", "@types/module-alias": "^2.0.1", "@types/react": "^19.1.10", "@types/react-dom": "^19.1.7", "@types/node": "^24.3.0", "@typescript-eslint/eslint-plugin": "^5.59.8", "@typescript-eslint/parser": "^5.59.8", "eslint": "^8.2.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^17.0.0", "eslint-config-prettier": "^8.10.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.0", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.28.0", "eslint-plugin-react-hooks": "^4.3.0", "prettier": "2.8.8", "rimraf": "^5.0.1", "sass": "^1.62.1", "sass-loader": "^13.3.2", "style-loader": "^3.3.3", "tsc-alias": "^1.8.6", "tsconfig-paths": "^4.2.0", "typescript": "^5.2.0" } }