-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 2.69 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "gulp5-sass-plugin",
"version": "2.0.4",
"description": "Gulp plugin for sass",
"keywords": [
"gulp-plugin",
"sass",
"gulp"
],
"bugs": {
"url": "https://github.com/Mister-Hope/gulp5-sass-plugin/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/Mister-Hope/gulp5-sass-plugin"
},
"license": "MIT",
"author": "Mr.Hope",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin esbuild",
"changelog": "standard-version --skip.bump --skip.commit --skip.tag",
"clean": "rimraf dist",
"commit": "pnpm git-cz",
"lint": "eslint --fix . && prettier --check --write .",
"lint:check": "eslint . && prettier --check .",
"packages:check-update": "pnpm dlx npm-check-updates -u --timeout 600000",
"packages:update": "pnpm up -r",
"prepare": "husky",
"prepublish": "pnpm clean && pnpm build",
"test": "vitest --coverage"
},
"nano-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"dependencies": {
"picocolors": "^1.1.1",
"plugin-error": "^2.0.1",
"replace-ext": "^2.0.0",
"sass": "^1.83.4",
"source-map-js": "^1.2.1",
"strip-ansi": "^7.1.0",
"vinyl": "^3.0.0",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"@codecov/rollup-plugin": "1.8.0",
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@rollup/plugin-node-resolve": "16.0.0",
"@types/gulp": "4.0.17",
"@types/gulp-postcss": "8.0.6",
"@types/gulp-sourcemaps": "0.0.38",
"@types/node": "22.13.1",
"@types/vinyl": "2.0.12",
"@vitest/coverage-istanbul": "3.0.4",
"autoprefixer": "10.4.20",
"commitizen": "4.3.1",
"cz-git": "1.11.0",
"del": "8.0.0",
"eslint": "9.19.0",
"eslint-config-mister-hope": "0.4.1",
"gulp": "5.0.0",
"gulp-postcss": "10.0.0",
"gulp-sourcemaps": "3.0.0",
"husky": "9.1.7",
"nano-staged": "0.8.0",
"postcss": "8.5.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.34.0",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"standard-version": "9.5.0",
"typescript": "5.7.3",
"vitest": "3.0.4"
},
"peerDependencies": {
"gulp": "^5.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}