@akasuv/rex
Version:
Rex is an everything toolkit for React.
50 lines (49 loc) • 1.16 kB
JSON
{
"name": "@akasuv/rex",
"private": false,
"version": "1.1.0",
"description": "Rex is an everything toolkit for React.",
"types": "./lib/cjs/types/index.d.ts",
"main": "index.js",
"files": [
"lib/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"Utilities",
"React",
"Toolkit",
"Rex"
],
"author": "Wei Su <me@weisu.io>",
"license": "MIT",
"dependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"semantic-release": "^21.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/akasuv/rex.git"
}
}