canihazusername/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2019-02-09 19:09:04 +01:00
{
"name": "canihazusername",
2022-08-02 11:38:22 +02:00
"version": "2.3.5",
2020-02-05 21:21:51 +01:00
"description": "username generator. typed, simple and customizable",
2022-05-31 15:31:36 +02:00
"type": "module",
2022-06-01 00:42:17 +02:00
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
2022-05-31 15:31:36 +02:00
"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
}
},
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
],
"targets": {
"docs": {
"distDir": "./build",
"context": "browser"
}
},
2019-02-09 19:09:04 +01:00
"scripts": {
2021-03-15 18:14:19 +01:00
"generate": "git submodule update && node ./generate/wordlist.js",
2021-11-02 18:02:21 +01:00
"dev": "tsc -w",
2022-06-01 00:42:17 +02:00
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
2022-05-31 15:31:36 +02:00
"docs": "pnpm run build && parcel build --target docs demo/index.html",
2021-03-15 18:14:19 +01:00
"docs:dev": "parcel --target docs demo/index.html",
2022-06-01 00:42:17 +02:00
"prepublishOnly": "rm -rf ./dist && pnpm run build",
"clean": "rm -rf ./dist ./build ./.parcel-cache"
2019-02-09 19:09:04 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/CupCakeArmy/canihazusername.git"
},
"keywords": [
2020-02-05 21:21:51 +01:00
"username",
"generator",
"types",
"customizable"
2019-02-09 19:09:04 +01:00
],
"author": "Niccolo Borgioli",
"license": "MIT",
"bugs": {
"url": "https://github.com/CupCakeArmy/canihazusername/issues"
},
"homepage": "https://github.com/CupCakeArmy/canihazusername#readme",
"devDependencies": {
2022-05-31 15:31:36 +02:00
"bulma": "^0.9.4",
2022-08-02 11:38:22 +02:00
"parcel": "^2.6.2",
"tsup": "^6.2.1",
"typescript": "^4.7.4"
2019-02-09 19:09:04 +01:00
}
2020-02-06 10:31:12 +01:00
}