-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 KB
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
{
"name": "npm-plugin-kit",
"type": "module",
"version": "0.4.0",
"packageManager": "pnpm@10.14.0",
"description": "A simple and powerful npm-based plugin system",
"author": "imba97",
"license": "MIT",
"homepage": "https://github.com/imba97/npm-plugin-kit#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:imba97/npm-plugin-kit.git"
},
"bugs": {
"url": "https://github.com/imba97/npm-plugin-kit/issues"
},
"keywords": [
"npm",
"plugin",
"kit"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "simple-git-hooks",
"stub": "unbuild --stub",
"build": "unbuild",
"test": "vitest --run",
"lint": "eslint --cache",
"release": "bumpp"
},
"dependencies": {
"fs-extra": "^11.0.0",
"importx": "^0.5.0",
"pathe": "^1.1.0"
},
"devDependencies": {
"@imba97/eslint-config": "^0.0.6",
"@types/fs-extra": "^11.0.0",
"@types/node": "^24.3.0",
"bumpp": "^10.2.3",
"eslint": "^9.33.0",
"lint-staged": "^16.1.5",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.2",
"unbuild": "^3.6.1",
"vitest": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --fix"
}
}