forked from tt-sevth/vite-plugin-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.73 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
{
"name": "vite-plugin-theme-vite3",
"version": "1.0.5",
"description": "Vite plugin for dynamically changing the theme color of the interface",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"es",
"CHANGELOG.md",
"README.md",
"README.zh_CN.md"
],
"scripts": {
"clean": "rimraf dist && rimraf es",
"dev": " tsup src/index.ts --dts --format cjs,esm --watch",
"dev:client": "tsc -w --p tsconfig.client.json",
"build": "npm run clean && tsup src/index.ts --dts --format cjs,esm && tsc -p tsconfig.client.json",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"example:dev": "npm -C example run serve",
"example:build": "npm -C example run build",
"release:prepare": "shipjs prepare",
"prepublishOnly": "pinst --disable && npm run build",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"install:husky": "is-ci || husky install",
"postinstall": "npm run install:husky",
"postpublish": "pinst --enable"
},
"keywords": [
"vite"
],
"author": "Vben",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vbenjs/vite-plugin-theme-vite3"
},
"bugs": {
"url": "https://github.com/vbenjs/vite-plugin-theme-vite3/issues"
},
"homepage": "https://github.com/vbenjs/vite-plugin-theme-vite3/tree/master/#readme",
"peerDependencies": {
"vite": ">=3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/less": "^3.0.2",
"@types/node": "^14.17.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@vue/compiler-sfc": "^3.0.11",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"fs-extra": "^9.1.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"less": "^4.1.1",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"shipjs": "^0.23.2",
"ts-jest": "^26.5.6",
"tsup": "^6.4.0",
"typescript": "^4.2.4",
"vite": "^3.2.0"
},
"dependencies": {
"@types/node": "^14.17.1",
"@types/tinycolor2": "^1.4.2",
"clean-css": "^5.1.2",
"debug": "^4.3.2",
"esbuild": "^0.11.23",
"esbuild-plugin-alias": "^0.1.2",
"tinycolor2": "^1.4.2"
}
}