-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1006 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": "@hedgehoglab/stylelint-config-vue",
"version": "2.0.1",
"description": "Vue specific stylelint config rules for the hedgehog lab org",
"keywords": [
"stylelint-config",
"stylelint",
"hedgehoglab",
"vue"
],
"homepage": "https://github.com/hedgehoglab-engineering/frontend-linters/tree/main/packages/stylelint-config-vue",
"license": "ISC",
"author": "Sam Turrell <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean --dts && fix-tsup-cjs",
"test": "tsc --noEmit"
},
"dependencies": {
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-vue": "^1.5.0"
},
"devDependencies": {
"fix-tsup-cjs": "^1.2.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}