-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "@kong/vite-plugins",
"version": "0.0.1",
"type": "module",
"description": "Kong OSS Vite plugins",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run --passWithNoTests",
"test:ui": "vitest --ui --passWithNoTests",
"typecheck": "vue-tsc --noEmit",
"build": "unbuild",
"commit": "cz"
},
"exports": {
"./plugin-example-one": {
"import": "./dist/plugin-example-one/index.mjs",
"types": "./dist/plugin-example-one/index.d.ts"
}
},
"files": ["dist"],
"author": "Kong, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@evilmartians/lefthook": "^1.10.1",
"@kong/eslint-config-kong-ui": "^1.2.4",
"@vitest/ui": "^2.1.8",
"eslint": "^9.17.0",
"typescript": "^5.7.2",
"unbuild": "^3.2.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
},
"engines": {
"node": ">=22.12.0",
"pnpm": ">=9.15.1"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.15.1"
},
"packageManager": "pnpm@9.15.1",
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false,
"jiraOptional": true,
"jiraLocation": "post-description",
"jiraPrepend": "[",
"jiraAppend": "]"
}
}
}