-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.86 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
{
"name": "stylelint-define-config",
"type": "module",
"version": "1.7.0",
"packageManager": "[email protected]",
"description": "Provide a defineConfig function for stylelint.config.js files",
"author": "pengzhanbo <[email protected]> (https://github.com/pengzhanbo)",
"license": "MIT",
"homepage": "https://github.com/stylelint-types/stylelint-define-config#readme",
"repository": {
"type": "git",
"url": "https://github.com/stylelint-types/stylelint-define-config.git"
},
"bugs": "https://github.com/stylelint-types/stylelint-define-config/issues",
"keywords": [
"config",
"configuration",
"define-config",
"stylelint-config",
"stylelint",
"stylelintconfig",
"typed",
"typescript"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"pnpm": ">=8.6.0"
},
"scripts": {
"build": "tsup-node",
"lint": "eslint .",
"prepublishOnly": "pnpm run build",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "bumpp package.json --execute=\"pnpm release:changelog\" --commit --all --push --tag && pnpm publish --access public"
},
"peerDependencies": {
"stylelint": ">=16.0.0"
},
"dependencies": {
"csstype": "^3.1.3"
},
"devDependencies": {
"@pengzhanbo/eslint-config": "^1.18.2",
"@types/node": "^22.8.2",
"bumpp": "^9.8.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.13.0",
"stylelint": "^16.10.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}