-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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-starter",
"type": "module",
"version": "0.0.7",
"packageManager": "[email protected]",
"description": "initx plugin starter template",
"author": "imba97",
"license": "MIT",
"homepage": "https://github.com/initx-collective/initx-plugin-starter#readme",
"repository": {
"type": "git",
"url": "[email protected]:initx-collective/initx-plugin-starter.git"
},
"bugs": {
"url": "https://github.com/initx-collective/initx-plugin-starter/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.25",
"@initx-plugin/utils": "^0.0.25"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@types/node": "^22.9.1",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --flag unstable_ts_config --fix"
}
}