-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.59 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
{
"name": "template-replace-stream",
"version": "2.2.0",
"description": "A high performance template replace stream working on binary or string streams",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup && (npm run build:readme)",
"build:all": "(npm run build:examples) && (npm run build)",
"build:readme": "cd examples && (npm run build:readme)",
"build:examples": "cd examples && npm ci",
"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.1",
"@types/node": "^24.2.1",
"@vitest/coverage-v8": "^3.2.4",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"arrowParens": "always"
}
}