-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 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
{
"name": "heredoc-ts",
"version": "1.0.0",
"description": "A heredoc implementation in TypeScript with support for nested heredocs.",
"author": "Corey Ward",
"license": "MIT",
"repository": "https://github.com/coreyward/heredoc-ts",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"keywords": [
"heredoc",
"indentation",
"template-literals",
"typescript",
"prompt-concatenation"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.10.0",
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"tsup": "^8.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^3.2.4"
}
}