-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "esbuild-plugin-package-json",
"description": "Prepares the package.json by removing all unnecessary fields and copying it to the out folder of esbuild, so the built package can be published directly.",
"keywords": [
"frontend",
"backend",
"packages",
"esbuild",
"build",
"esbuild plugin",
"esbuild tool",
"build plugin",
"build tool",
"package.json",
"developer tools",
"build process",
"plugin",
"esbuild dependency",
"dependency management",
"optimize package json",
"validate package json",
"esbuild copy package json",
"esbuild copy",
"package json plugin",
"package config plugin"
],
"license": "MIT",
"version": "2.0.0",
"bugs": "https://github.com/simonkovtyk/esbuild-plugin-package-json/issues",
"homepage": "https://github.com/simonkovtyk/esbuild-plugin-package-json",
"repository": {
"type": "git",
"url": "git+https://github.com/simonkovtyk/esbuild-plugin-package-json.git"
},
"types": "./public-api.d.ts",
"exports": {
"default": "./public-api.js"
},
"author": {
"name": "Simon Kovtyk",
"url": "https://github.com/simonkovtyk",
"email": "privat@kovtyk.com"
},
"maintainers": [
{
"name": "Simon Kovtyk",
"url": "https://github.com/simonkovtyk",
"email": "privat@kovtyk.com"
}
],
"dependencies": {
"@npmcli/package-json": "^5.2.0",
"esbuild": ">=0.20.0"
},
"scripts": {
"commitlint": "commitlint",
"eslint": "eslint",
"tsc": "tsc"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"inquirer": "9.3.6",
"commitizen": "^4.3.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.4",
"@types/npmcli__package-json": "^4.0.4",
"eslint": "^9.10.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.6.0",
"@stylistic/eslint-plugin": "^2.8.0",
"husky": "^9.1.6"
}
}