-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 KB
/
package.json
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
{
"type": "module",
"name": "strpolate",
"description": "Fast string interpolation with built-in type validation",
"version": "1.0.6",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rimraf dist && rollup -c",
"format": "biome format . --write",
"format:check": "biome format .",
"lint": "biome check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@biomejs/biome": "1.1.2",
"@vitest/coverage-v8": "^0.34.4",
"esbuild": "^0.19.2",
"rimraf": "^5.0.1",
"rollup": "^3.29.1",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Kevin Hermawan",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinhermawan/strpolate.git"
},
"bugs": {
"url": "https://github.com/kevinhermawan/strpolate/issues"
},
"homepage": "https://github.com/kevinhermawan/strpolate#readme",
"keywords": [
"string interpolation",
"string formatting",
"string templates",
"dynamic strings"
]
}