-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
128 lines (128 loc) · 3.38 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "xs-components",
"type": "module",
"version": "1.0.7",
"workspaces": [
"packages",
"docs",
"effect",
"build"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16",
"pnpm": ">=9"
},
"scripts": {
"ct": "bash ./script/template.sh",
"clean": "rimraf ./dist",
"dev": "pnpm run -C effect dev",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"log": "conventional-changelog -p cmyr-config -i CHANGELOG.md -s -r 0",
"type:web": "vue-tsc -p tsconfig.web.json --composite false --noEmit",
"type:node": "tsc -p tsconfig.node.json --composite false --noEmit",
"docs:dev": "pnpm run -C docs dev",
"docs:build": "pnpm run -C docs build",
"docs:serve": "pnpm run -C docs serve",
"build": "pnpm run -C build build",
"lint:eslint": "eslint . --fix",
"lint:prettier": "prettier . --write",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:staged": "lint-staged",
"cz": "czg",
"prepare": "husky",
"release": "bump package.json packages/package.json docs/package.json"
},
"dependencies": {
"@jsxiaosi/utils": "^0.0.19",
"@vueuse/core": "^12.0.0"
},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@jsxiaosi/commitlint-config": "^1.0.6",
"@jsxiaosi/eslint-config": "^1.0.6",
"@jsxiaosi/eslint-config-prettier": "^1.0.6",
"@types/node": "*",
"@vitest/coverage-c8": "^0.32.2",
"@vue/test-utils": "^2.4.6",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"conventional-changelog-cli": "^5.0.0",
"czg": "^1.11.0",
"eslint": "^9.16.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"fast-glob": "^3.3.2",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-import": "^16.1.0",
"postcss-pxtorem": "^6.1.0",
"prettier": "3.4.2",
"sass": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.10.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.10"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
"source-map-*",
"stable",
"uuid",
"vite*",
"urix"
]
}
},
"peerDependencyRules": {
"ignoreMissing": [
"vite"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}