-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.65 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
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
{
"name": "format-prompt",
"description": "A utility to format prompts for a cleaner presentation and optimal token usage",
"version": "1.0.2",
"author": {
"name": "Khánh Hoàng",
"email": "hi@khanh.id",
"url": "https://www.khanh.id"
},
"homepage": "https://prompt.khanh.id",
"repository": {
"type": "git",
"url": "git+https://github.com/hckhanh/format-prompt.git"
},
"bugs": {
"url": "https://github.com/hckhanh/format-prompt/issues",
"email": "hi@khanh.id"
},
"private": false,
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"bench": "vitest bench",
"build": "tsdown",
"format": "biome check --write",
"release": "bun run build && changeset publish",
"test": "vitest"
},
"dependencies": {
"string-collapse-leading-whitespace": "^7.1.0",
"string-collapse-white-space": "^11.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@changesets/cli": "2.30.0",
"@changesets/config": "3.1.3",
"@codspeed/vitest-plugin": "5.2.0",
"@toon-format/toon": "2.1.0",
"@types/bun": "1.3.12",
"@types/node": "25.6.0",
"@vitest/coverage-v8": "4.1.4",
"knip": "5.88.1",
"syncpack": "14.3.0",
"tsdown": "0.21.7",
"typescript": "5.9.3",
"vitest": "4.1.4"
},
"workspaces": [
".",
"docs"
],
"files": [
"dist"
],
"keywords": [
"prompt",
"format",
"llm",
"ai",
"template",
"string",
"whitespace",
"typescript"
],
"license": "MIT"
}