-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "text-analyzer",
"version": "1.6.1",
"description": "Utility functions providing possibilities to analyze text.",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint .",
"format": "prettier --write .",
"format-check": "prettier --check .",
"release": "pnpm build && pnpm changeset publish",
"review": "pnpm install --frozen-lockfile && pnpm lint && pnpm format-check && pnpm test && pnpm build",
"test": "vitest"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@tammergard/eslint-config-base": "5.0.6",
"@tammergard/prettier-config": "2.1.0",
"@tammergard/tsconfig": "2.8.0",
"eslint": "8.57.1",
"prettier": "3.3.3",
"tsup": "8.3.5",
"typescript": "5.6.2",
"vitest": "2.1.4"
},
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.d.ts"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"text",
"characters",
"words",
"reading-time"
],
"homepage": "https://github.com/filiptammergard/text-analyzer#readme",
"bugs": {
"url": "https://github.com/filiptammergard/text-analyzer/issues"
},
"license": "MIT",
"author": {
"name": "Filip Tammergård",
"email": "[email protected]",
"url": "https://tammergard.se"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filiptammergard/text-analyzer.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "[email protected]"
}