-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "ezberlenen-parola",
"version": "0.4.7",
"license": "LGPL-3.0",
"description": "🔑 Generate Turkish Password Sentences",
"repository": {
"type": "git",
"url": "https://github.com/kaanguru/ezberlenen-parola.git",
"homepage": "https://www.cemkaan.com"
},
"keywords": [
"passwords",
"Generator"
],
"author": "Cem Kaan Kösalı",
"authors": [
"Cem Kaan Kösalı"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"devDependencies": {
"@types/node": "^22.10.1",
"rimraf": "^6.0.1",
"slugify": "^1.6.6",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.7"
},
"scripts": {
"dev": "vitest --watch",
"dev:duzenle": "pnpm tsup ./src/helpers/duzenle.ts --watch --onSuccess \"node dist/duzenle.js\"",
"lint": "tsc",
"test": "vitest run",
"prebuild": "rimraf \"dist/\"",
"build": "tsup src/index.ts --format cjs,esm,iife --global-name ezberlenenParola --dts --minify",
"ci": "pnpm run lint && pnpm run test && pnpm run prebuild && pnpm run build",
"publish2jsr": "pnpm dlx jsr publish"
}
}