-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@versoly/plugins",
"version": "0.0.14",
"description": "Plugins for Versoly",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index-Bq8k_GQ9.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "vite",
"cm": "cz",
"clean": "rimraf lib",
"lint": "eslint src",
"prepare": "is-ci || husky",
"semantic-release": "semantic-release",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepack": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/versoly/plugins.git"
},
"license": "MIT",
"author": {
"name": "Volkan Kaya",
"url": "https://versoly.com"
},
"engines": {
"node": ">=22.18.0",
"pnpm": ">=9.15.1"
},
"keywords": [
"Versoly"
],
"bugs": {
"url": "https://github.com/versoly/plugins/issues"
},
"homepage": "https://github.com/versoly/plugins#readme",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@kainstar/eslint-config": "^1.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^4.0.18",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "npm:eslint-ts-patch@8.56.0-0",
"eslint-ts-patch": "8.57.0-0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.5",
"tsdown": "^0.20.3",
"type-fest": "^4.26.1",
"typescript": "^5.9.2",
"vite": "v8.0.0-beta.13",
"vitest": "^4.0.18"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}