generated from initx-collective/initx-plugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "@initx-plugin/dev",
"type": "module",
"version": "0.0.3",
"packageManager": "pnpm@9.15.1",
"description": "development assistance plugin for initx",
"author": "imba97",
"license": "MIT",
"homepage": "https://github.com/initx-collective/initx-plugin-dev#readme",
"repository": {
"type": "git",
"url": "git@github.com:initx-collective/initx-plugin-dev.git"
},
"bugs": {
"url": "https://github.com/initx-collective/initx-plugin-dev/issues"
},
"keywords": [
"initx",
"initx-plugin"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"stub": "unbuild --stub",
"build": "unbuild",
"release": "bumpp",
"lint": "eslint --cache --flag unstable_ts_config",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@initx-plugin/core": "^0.0.28",
"@initx-plugin/utils": "^0.0.28"
},
"devDependencies": {
"@imba97/eslint-config": "^0.0.5",
"@types/node": "^22.10.2",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"lint-staged": "^15.3.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unbuild": "^3.1.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --flag unstable_ts_config --fix"
}
}