-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.95 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
{
"name": "postcss-specificity-decorator",
"description": "PostCSS plugin to increase the specificity of selectors",
"type": "module",
"version": "0.1.0",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Maxim Morev",
"email": "[email protected]"
},
"homepage": "https://github.com/MorevM/postcss-specificity-decorator#readme",
"repository": {
"type": "git",
"url": "https://github.com/MorevM/postcss-specificity-decorator"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"specificity"
],
"files": [
"dist"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./7": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/postcss7.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/postcss7.js"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"prepare": "lefthook install",
"release": "release-it --disable-metrics",
"lint": "yarn lint:eslint",
"lint:fix": "yarn lint:eslint:fix",
"lint:eslint": "eslint \"**/*.{js,ts,vue,json,json5,jsonc,yml,yaml,md}\"",
"lint:eslint:fix": "eslint \"**/*.{js,ts,vue,json,json5,jsonc,yml,yaml,md}\" --fix",
"test": "vitest",
"test:dev": "vitest --watch"
},
"peerDependencies": {
"postcss": ">=7"
},
"devDependencies": {
"@morev/commitlint-config": "^0.2.2",
"@morev/eslint-config": "^33.0.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/clean-css": "^4.2.11",
"clean-css": "^5.3.3",
"commonjs-variables-for-esmodules": "^1.1.0",
"eslint": "8.57.0",
"lefthook": "^1.6.15",
"postcss": "^8.4.38",
"release-it": "^17.3.0",
"sass": "^1.77.4",
"tsup": "^8.1.0",
"vitest": "^1.6.0"
}
}