-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.28 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "vite-plugin-pug",
"version": "0.4.1",
"description": "Vite plugin for transform Pug templates into HTML",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"clean": true,
"minify": true,
"sourcemap": true
},
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup",
"lint": "tsc --noEmit",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SubZtep/vite-plugin-pug.git"
},
"keywords": [
"vite",
"vite-plugin",
"pug",
"jade"
],
"author": "Andras Serfozo <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/SubZtep/vite-plugin-pug/issues"
},
"homepage": "https://github.com/SubZtep/vite-plugin-pug#readme",
"dependencies": {
"picocolors": "~1",
"pug": "^3.0.3"
},
"devDependencies": {
"@types/pug": "^2.0.10",
"tsup": "^6.4.0",
"typescript": "^4.8.4",
"vite": "^5.0.12",
"vitest": "^0.25.1"
}
}