-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "humanize-ai-lib",
"version": "1.0.0",
"description": "Humanize string function used in https://humanize-ai.click/",
"main": "dist/humanize-string.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"ci": "npm run build && npm run check-format && npm run check-exports"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nordth/humanize-ai-lib.git"
},
"keywords": [
"typescript",
"humanize",
"string",
"ai",
"strip",
"unicode"
],
"author": "Nordth",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nordth/humanize-ai-lib/issues"
},
"homepage": "https://github.com/Nordth/humanize-ai-lib#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"files": [
"dist"
]
}