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
| {
| "name": "@vben/stylelint-config",
| "version": "1.0.0",
| "private": true,
| "homepage": "https://github.com/vbenjs/vue-vben-admin",
| "bugs": {
| "url": "https://github.com/vbenjs/vue-vben-admin/issues"
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
| "directory": "internal/stylelint-config"
| },
| "license": "MIT",
| "exports": {
| ".": {
| "types": "./dist/index.d.ts",
| "import": "./dist/index.mjs",
| "require": "./dist/index.cjs"
| }
| },
| "main": "./dist/index.cjs",
| "module": "./dist/index.mjs",
| "types": "./dist/index.d.ts",
| "files": [
| "dist"
| ],
| "scripts": {
| "clean": "pnpm rimraf .turbo node_modules dist",
| "lint": "pnpm eslint .",
| "stub": "pnpm unbuild --stub"
| },
| "devDependencies": {
| "postcss": "^8.4.21",
| "postcss-html": "^1.5.0",
| "postcss-less": "^6.0.0",
| "postcss-scss": "^4.0.6",
| "prettier": "^2.8.7",
| "stylelint": "^15.4.0",
| "stylelint-config-property-sort-order-smacss": "^9.1.0",
| "stylelint-config-recommended": "^11.0.0",
| "stylelint-config-recommended-scss": "^9.0.1",
| "stylelint-config-recommended-vue": "^1.4.0",
| "stylelint-config-standard": "^32.0.0",
| "stylelint-config-standard-scss": "^7.0.1",
| "stylelint-order": "^6.0.3",
| "stylelint-prettier": "^3.0.0"
| }
| }
|
|