canihazusername/package.json

57 lines
1.4 KiB
JSON

{
"name": "canihazusername",
"version": "2.3.5",
"description": "username generator. typed, simple and customizable",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"targets": {
"docs": {
"distDir": "./build",
"context": "browser"
}
},
"scripts": {
"generate": "git submodule update && node ./generate/wordlist.js",
"dev": "tsc -w",
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
"docs": "pnpm run build && parcel build --target docs demo/index.html",
"docs:dev": "parcel --target docs demo/index.html",
"prepublishOnly": "rm -rf ./dist && pnpm run build",
"clean": "rm -rf ./dist ./build ./.parcel-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CupCakeArmy/canihazusername.git"
},
"keywords": [
"username",
"generator",
"types",
"customizable"
],
"author": "Niccolo Borgioli",
"license": "MIT",
"bugs": {
"url": "https://github.com/CupCakeArmy/canihazusername/issues"
},
"homepage": "https://github.com/CupCakeArmy/canihazusername#readme",
"devDependencies": {
"bulma": "^0.9.4",
"parcel": "^2.6.2",
"tsup": "^6.2.1",
"typescript": "^4.7.4"
}
}