-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 2.93 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "gulp5-sass-plugin",
"version": "2.1.0",
"description": "Gulp plugin for sass",
"keywords": [
"gulp",
"gulp-plugin",
"sass"
],
"bugs": {
"url": "https://github.com/Mister-Hope/gulp5-sass-plugin/issues"
},
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "mister-hope@outlook.com",
"url": "https://mister-hope.com"
},
"repository": {
"type": "git",
"url": "git://github.com/Mister-Hope/gulp5-sass-plugin"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"changelog": "conventional-changelog -p conventionalcommits",
"clean": "rimraf dist",
"dev": "tsdown -w",
"lint": "oxlint --fix --report-unused-disable-directives --deny-warnings && oxfmt",
"lint:check": "oxlint --report-unused-disable-directives --deny-warnings && oxfmt --check",
"prepare": "husky",
"prepublish": "pnpm run clean && pnpm run build",
"test": "vitest --coverage"
},
"dependencies": {
"picocolors": "^1.1.1",
"plugin-error": "^2.0.1",
"replace-ext": "^2.0.0",
"sass": "^1.101.0",
"source-map-js": "^1.2.1",
"strip-ansi": "^7.2.0",
"vinyl": "^3.0.1",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"@codecov/rollup-plugin": "2.0.1",
"@mr-hope/tsconfig": "0.0.4",
"@rollup/plugin-node-resolve": "16.0.3",
"@types/gulp": "4.0.18",
"@types/gulp-postcss": "8.0.6",
"@types/gulp-sourcemaps": "0.0.38",
"@types/node": "22.20.1",
"@types/vinyl": "2.0.12",
"@vitest/coverage-istanbul": "4.1.10",
"autoprefixer": "10.5.2",
"conventional-changelog": "8.0.1",
"conventional-changelog-conventionalcommits": "10.2.1",
"del": "8.0.1",
"gulp": "5.0.1",
"gulp-postcss": "10.0.0",
"gulp-sourcemaps": "3.0.0",
"husky": "9.1.7",
"nano-staged": "1.0.2",
"oxc-config-hope": "0.3.9",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"oxlint-tsgolint": "0.24.0",
"picocolors": "1.1.1",
"postcss": "8.5.16",
"rimraf": "6.1.3",
"tsdown": "0.22.4",
"typescript": "7.0.2",
"unrun": "0.3.1",
"vitest": "4.1.10"
},
"peerDependencies": {
"gulp": "^5.0.0"
},
"nano-staged": {
"**/*": "oxfmt --no-error-on-unmatched-pattern",
"*.{js,ts}": "oxlint --fix --report-unused-disable-directives --deny-warnings"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.12.0",
"onFail": "download"
},
"runtime": {
"name": "node",
"version": "^22.23.0 || ^24.16.0 || ^26.3.0",
"onFail": "error"
}
},
"engines": {
"node": ">=14"
}
}