-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 913 Bytes
/
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
{
"name": "minimustache",
"description": "Super minimal mustache implementation",
"module": "dist/lib.js",
"main": "dist/lib.cjs",
"types": "dist/lib.d.ts",
"type": "module",
"version": "1.0.1",
"keywords": [
"mustache",
"template",
"templating"
],
"license": "MIT",
"repository": "https://github.com/OfficialCRUGG/minimustache",
"author": "OfficialCRUGG <me@crg.sh>",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"bench": "vitest bench"
},
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js",
"require": "./dist/lib.cjs"
}
},
"devDependencies": {
"bun-types": "latest",
"mustache": "^4.2.0",
"tsup": "^8.3.5",
"vitest": "^2.1.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"dist"
]
}