-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "esbuild-pug",
"version": "1.0.0",
"description": "esbuild plugin to work with pug (jade) files",
"homepage": "https://github.com/lekhmanrus/esbuild-pug/",
"bugs": {
"url": "https://github.com/lekhmanrus/esbuild-pug/issues",
"email": "lekhman112@gmail.com"
},
"author": "Ruslan Lekhman <lekhman112@gmail.com> (https://github.com/lekhmanrus)",
"contributors": [
"Ruslan Lekhman <lekhman112@gmail.com> (https://github.com/lekhmanrus)"
],
"repository": {
"type": "git",
"url": "https://github.com/lekhmanrus/esbuild-pug"
},
"license": "MIT",
"readme": "https://github.com/lekhmanrus/esbuild-pug/blob/main/README.md",
"private": false,
"keywords": [
"esbuild-plugin",
"esbuild",
"pug",
"jade",
"plugin",
"build-tool",
"javascript",
"html-template"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"default": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"prepare": "husky",
"prebuild": "npm run clean",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:esm": "tsc -p ./tsconfig.esm.json && shx mv ./dist/esm/index.js ./dist/esm/index.mjs && shx mv ./dist/esm/index.js.map ./dist/esm/index.mjs.map",
"clean": "shx rm -rf ./dist",
"test": "vitest -c vitest.config.mts",
"coverage": "vitest run -c vitest.config.mts --coverage",
"release": "standard-version",
"commitlint": "commitlint",
"lint": "eslint --report-unused-disable-directives --exit-on-fatal-error --"
},
"peerDependencies": {
"esbuild": ">=0.15"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/format": "^19.5.0",
"@types/node": "^22.7.5",
"@types/pug": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitest/coverage-v8": "^2.1.2",
"conventional-changelog-angular": "^8.0.0",
"cosmiconfig": "^9.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"memfs": "^4.13.0",
"pug": "^3.0.3",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"typescript": "5.5.4",
"typescript-eslint": "^8.8.1",
"validate-branch-name": "^1.3.1",
"vitest": "^2.1.2"
}
}