-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 Bytes
/
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
{
"name": "@zinkawaii/stylelint-config",
"type": "module",
"version": "0.3.0",
"packageManager": "[email protected]",
"author": "KazariEX",
"license": "MIT",
"repository": "KazariEX/stylelint-config",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup-node",
"dev": "tsup-node --watch",
"prepack": "pnpm run build",
"release": "bumpp --no-push -c \"release: v%s\"",
"eslint": "eslint ."
},
"dependencies": {
"@stylistic/stylelint-plugin": "^3.1.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@zinkawaii/eslint-config": "^0.2.0",
"bumpp": "^10.0.1",
"eslint": "^9.19.0",
"stylelint": "^16.14.1",
"tsup": "^8.3.6"
}
}