-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "@devdesignersid/forger",
"version": "1.0.1",
"description": "A lightweight TypeScript library for crafting dynamic strings by seamlessly replacing placeholders in templates with values from data objects. Simplify string generation in your projects with Forger.",
"author": "Siddharth S Kumar",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"keywords": [
"TypeScript",
"String manipulation",
"Template strings",
"Placeholder replacement",
"Dynamic string generation",
"Text templating",
"String formatting",
"Text rendering",
"Utility library",
"String composition",
"Templating engine",
"Text processing",
"String interpolation",
"Data-driven strings"
],
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"_prepublishOnly": "npm test && npm run lint"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/devdesignersid/forger"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}