-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "vite-plugin-banner",
"description": "A banner plugin for Vite. Adds a banner to the top of each generated chunk.",
"version": "0.8.0",
"author": "chengpeiquan <[email protected]>",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/chengpeiquan/vite-plugin-banner",
"files": [
"dist"
],
"main": "./dist/index.min.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup",
"test": "jest --no-cache --detectOpenHandles",
"lint": "eslint .",
"format": "prettier --write .",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"up": "npx taze minor -r -f -w -i",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/chengpeiquan/vite-plugin-banner"
},
"keywords": [
"vite-plugin",
"vite plugin",
"vite banner"
],
"devDependencies": {
"@bassist/commit": "^0.1.1",
"@bassist/eslint": "^0.7.0",
"@bassist/node-utils": "^0.4.1",
"@bassist/tsconfig": "^0.1.1",
"@types/jest": "^28.1.8",
"@types/node": "^20.16.3",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"jest": "^28.1.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^28.0.8",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.3"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
}
}