-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "promptfmt",
"version": "0.1.2",
"description": "A composable prompt formatting library with runtime parameter substitution and conditional logic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"prepublishOnly": "npm run clean && npm run build",
"examples": "ts-node examples/run-all.ts",
"test:example": "ts-node examples/test-prompt.ts",
"test:examples": "jest examples/__tests__"
},
"keywords": [
"prompt",
"formatting",
"template",
"substitution",
"conditional",
"logic",
"composable"
],
"author": "Hoang Nguyen <hoang@codeaholicguy.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=16.0.0"
}
}