-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.69 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.69 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
{
"name": "placefill",
"version": "1.0.0",
"description": "Lightweight placeholder filling for strings, objects, and arrays.",
"keywords": [
"browser",
"cjs",
"esm",
"fill",
"i18n",
"interpolation",
"node",
"placeholder",
"rich-text",
"string-replacement",
"template",
"typescript"
],
"homepage": "https://github.com/crper/placefill#readme",
"bugs": {
"url": "https://github.com/crper/placefill/issues"
},
"license": "MIT",
"author": "linqunhe",
"repository": {
"type": "git",
"url": "git+https://github.com/crper/placefill.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"check": "vp check",
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"examples": "pnpx tsx examples/index.ts",
"bench": "vp test bench",
"prepublishOnly": "vp check && vp test && vp pack",
"prepare": "vp config"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260309.1",
"bumpp": "^10.4.1",
"typescript": "^5.9.3",
"vite-plus": "0.1.12",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.12"
},
"engines": {
"node": ">=16.20"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.12",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.12"
}
}
}