This repository was archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.19 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
{
"name": "vite-plugin-load-css-module",
"version": "0.1.4",
"description": "A plugin to extend vite's css module rules, not just \".module\" suffix",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --cache --fix --ext .ts,.js src",
"dev": "npm run build -- --watch",
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts",
"test": "jest",
"commit": "cz",
"format": "prettier --write .",
"release": "standard-version",
"major": "standard-version --release-as major",
"minor": "standard-version --release-as minor",
"patch": "standard-version --release-as patch"
},
"files": [
"dist"
],
"keywords": [
"vite",
"vite-plugin",
"css-module"
],
"license": "ISC",
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.{js,ts}": [
"eslint --cache"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"homepage": "https://github.com/jsonz1993/vite-plugin-load-css-module",
"bugs": {
"url": "https://github.com/jsonz1993/vite-plugin-load-css-module/issues"
},
"author": "jsonz1993 <jsonz@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/jsonz1993/vite-plugin-load-css-module"
},
"dependencies": {},
"peerDependencies": {
"vite": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "7.17.0",
"@babel/core": "7.17.2",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@jsonz/eslint-config": "^0.4.0",
"@types/jest": "27.4.0",
"@types/node": "17.0.17",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.8.0",
"jest": "27.5.1",
"lint-staged": "12.3.3",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "2.7.0",
"standard-version": "^9.3.2",
"ts-node": "10.5.0",
"tsup": "5.11.13",
"typescript": "4.5.5",
"vite": "^2.8.0"
}
}