canihazusername/package.json

58 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2019-02-09 19:09:04 +01:00
{
"name": "canihazusername",
2023-11-21 10:54:29 +01:00
"version": "2.4.1",
2020-02-05 21:21:51 +01:00
"description": "username generator. typed, simple and customizable",
2023-11-21 10:54:13 +01:00
"keywords": [
"username",
"generator",
"types",
"customizable"
],
"homepage": "https://github.com/CupCakeArmy/canihazusername#readme",
"bugs": {
"url": "https://github.com/CupCakeArmy/canihazusername/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CupCakeArmy/canihazusername.git"
},
"license": "MIT",
"author": "Niccolo Borgioli",
2022-05-31 15:31:36 +02:00
"type": "module",
"exports": {
".": {
2022-06-06 12:40:35 +02:00
"require": "./dist/index.cjs",
"import": "./dist/index.js",
2022-06-01 00:42:17 +02:00
"types": "./dist/index.d.ts"
2022-05-31 15:31:36 +02:00
}
},
2023-11-21 10:54:13 +01:00
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
2021-03-15 18:14:19 +01:00
"files": [
2021-11-21 18:11:42 +01:00
"dist"
2021-03-15 18:14:19 +01:00
],
2019-02-09 19:09:04 +01:00
"scripts": {
2022-06-01 00:42:17 +02:00
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
2023-11-21 10:54:13 +01:00
"clean": "rm -rf ./dist ./build",
"dev": "tsc -w",
2023-07-12 23:05:30 +02:00
"docs": "vite build demo --outDir ../build",
"docs:dev": "vite demo",
2023-11-21 10:54:13 +01:00
"generate": "git submodule update --recursive --remote --init && node ./generate/wordlist.js",
"prepublishOnly": "rm -rf ./dist && pnpm run build"
2019-02-09 19:09:04 +01:00
},
"devDependencies": {
2022-05-31 15:31:36 +02:00
"bulma": "^0.9.4",
2023-11-21 10:54:13 +01:00
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vite": "^5.0.0"
},
"packageManager": "pnpm@8.10.5",
"targets": {
"docs": {
"distDir": "./build",
"context": "browser"
}
2019-02-09 19:09:04 +01:00
}
2020-02-06 10:31:12 +01:00
}