-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.13 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mastodonte",
"version": "0.0.0-semantically-released",
"description": "🐘 mastodonte - un generador de palabras para los mastodontes, cracks y figuras como tú.",
"type": "module",
"scripts": {
"build": "tsup",
"start": "pnpm build --watch",
"prepare": "husky",
"test": "jest",
"test:watch": "pnpm test -- --watch",
"test:ci": "pnpm test -- --ci --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "pnpm lint --fix",
"prettier-base": "prettier . --ignore-unknown --cache --log-level warn",
"format": "pnpm prettier-base --write",
"format:check": "pnpm prettier-base --check",
"type-check": "tsc --noEmit",
"semantic-release": "semantic-release"
},
"dependencies": {
"lorem-ipsum": "^2.0.8"
},
"devDependencies": {
"@swc/core": "1.10.1",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/lodash.deburr": "4.1.9",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"lodash.deburr": "4.1.0",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"tsup": "8.3.5",
"typescript": "5.7.2"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0 || >=22.0.0",
"pnpm": "^8.6.0"
},
"packageManager": "pnpm@8.15.9",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"default": "./dist/index.d.ts"
},
"import": {
"default": "./dist/index.js"
}
}
},
"author": {
"name": "Mario Beltrán",
"email": "me@mario.dev",
"url": "https://mario.dev/"
},
"keywords": [
"lorem",
"ipsum",
"placeholder",
"text",
"dummy",
"mastodonte",
"texto"
],
"repository": {
"type": "git",
"url": "https://github.com/Belco90/mastodonte-js.git"
},
"homepage": "https://github.com/Belco90/mastodonte-js",
"bugs": {
"url": "https://github.com/Belco90/mastodonte-js/issues"
}
}