-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.52 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": "@amatlash/vite-plugin-stylelint",
"version": "1.2.0",
"description": "Vite 2 plugin to lint CSS with stylelint.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint src",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"vite-plugin",
"stylelint"
],
"author": {
"name": "Aleksei Matlash",
"email": "[email protected]",
"url": "https://github.com/AMatlash"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AMatlash/vite-plugin-stylelint"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@types/estree": "0.0.46",
"@types/node": "^14.14.25",
"@types/stylelint": "^9.10.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"typescript": "^4.4.4",
"vite": "^2.6.14"
},
"dependencies": {
"@rollup/pluginutils": "^4.1.1",
"stylelint": "^14.1.0"
},
"peerDependencies": {
"vite": "^2.6.14",
"rollup": "^2.60.0"
}
}