-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.78 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
75
{
"name": "template-replace-stream",
"version": "3.0.1",
"description": "A high performance template replace stream working on binary or string streams",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"workspaces": [
"examples"
],
"scripts": {
"prepack": "npm run build",
"build": "(npm run clean) && tsc -p tsconfig.build.json && (npm run build:readme)",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build:readme": "npm run build:readme -w examples",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"test:build": "vitest run",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoulKa/template-replace-stream.git"
},
"keywords": [
"transform",
"stream",
"key",
"value",
"binary",
"readstream",
"readable",
"variable",
"map",
"performance",
"simple",
"template",
"typescript"
],
"author": "Louis Wilke",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoulKa/template-replace-stream/issues"
},
"homepage": "https://github.com/SoulKa/template-replace-stream#readme",
"devDependencies": {
"@tsconfig/node24": "24.0.4",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.10",
"prettier": "3.9.6",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"arrowParens": "always"
}
}