UNPKG

@xtsai/x-supports

Version:

The biz-support is an library for both frontend & backend

96 lines 3.03 kB
{ "name": "@xtsai/x-supports", "version": "0.1.0", "description": "The biz-support is an library for both frontend & backend", "main": "dist/cjs/index.js", "types": "dist/esm/index.d.ts", "module": "dist/esm/index.js", "publishConfig": { "access": "public" }, "npm": { "publish": false }, "keywords": [ "xai", "naive admin", "nestjs" ], "author": { "name": "lanbery", "email": "lanbery@gmail.com", "url": "https://lanbery.cc" }, "license": "LICENSE", "files": [ "dist/*", "types/*", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/xtsai/x-supports.git" }, "bugs": { "url": "https://github.com/xtsai/x-supports/issues" }, "homepage": "https://github.com/xtsai/x-supports#readme", "lint-staged": { "*.{js,ts,tsx,json,html,vue,jsx,scss,less,css}": [ "prettier \"**/**/*.{ts,js,json,tsx,mjs,vue,scss,less,css,html}\" --ignore-path ./.prettierignore --write" ], "*.{js,ts,tsx,json,html,vue,jsx}": [ "pnpm run lint" ] }, "devDependencies": { "@changesets/changelog-github": "^0.5.1", "@changesets/cli": "^2.28.1", "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "@commitlint/types": "^19.8.0", "@eslint/js": "^9.22.0", "@jest/globals": "^29.7.0", "@types/jest": "^29.5.14", "@types/node": "^22.13.10", "eslint": "^9.22.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.3", "globals": "^16.0.0", "husky": "^9.1.7", "jest": "^29.7.0", "lint-staged": "^15.5.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "ts-jest": "^29.2.6", "ts-node": "^10.9.2", "tsc-multi": "^1.1.0", "typescript": "^5.8.2", "typescript-eslint": "^8.27.0" }, "scripts": { "postinstall": "npx only-allow pnpm", "prebuild": "rimraf dist types", "clean": "rimraf dist types coverage", "build": "pnpm clean && pnpm tsc:esm && pnpm tsc:cjs", "build:only": "pnpm tsc:esm && pnpm tsc:cjs", "multi:build": "pnpm tsc-multi", "tsc:esm": "tsc -p tsconfig.esm.json", "tsc:cjs": "tsc -p tsconfig.cjs.json", "commitlint": "commitlint --config commitlint.config.ts -e -v", "format": "prettier \"**/**/*.{ts,js,json,tsx,mjs}\" --ignore-path ./.prettierignore --write", "lint": "eslint \"src/**/*.ts\" --fix", "lint-staged": "lint-staged", "test:all": "jest --config ./jest.config.ts --runInBand --colors", "test": "jest --config ./jest.config.ts --runInBand --colors --onlyChanged", "change:empty": "changeset add --empty", "publish:only": "changeset publish --registry=https://registry.npmjs.com/", "vp": "pnpm changeset version", "prerelease": "pnpm format && pnpm build && pnpm test:all && pnpm vp", "release": "pnpm publish:only", "postrelease": "pnpm push:changelog", "push:changelog": "node build/scripts/push-changelog.mjs" } }