-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.29 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
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
85
86
87
{
"name": "vite-plugin-vue-shadow-style",
"version": "1.0.0",
"description": "Plugin to inject Vue setup SFC style to shadow root",
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"cm": "cz",
"clean": "rimraf lib",
"lint": "eslint src",
"prepare": "is-ci || husky install",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kainstar/vite-plugin-vue-shadow-style.git"
},
"license": "MIT",
"author": {
"name": "Kainstar",
"email": "[email protected]",
"url": "https://github.com/kainstar"
},
"engines": {
"node": ">=18.0"
},
"keywords": [
"vue",
"shadow-dom",
"style",
"vite",
"unplugin"
],
"bugs": {
"url": "https://github.com/kainstar/vite-plugin-vue-shadow-style/issues"
},
"homepage": "https://github.com/kainstar/vite-plugin-vue-shadow-style#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"slash": "^5.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}