| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "name": "@rys-fe/vite-plugin-theme",
- "version": "0.8.6",
- "description": "Vite plugin for dynamically changing the theme color of the interface",
- "main": "dist/index.js",
- "module": "dist/index.js",
- "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"
- },
- "bugs": {
- "url": "https://github.com/vbenjs/vite-plugin-theme/issues"
- },
- "homepage": "https://github.com/vbenjs/vite-plugin-theme/tree/master/#readme",
- "peerDependencies": {
- "vite": ">=2.0.0-beta.49"
- },
- "devDependencies": {
- "@commitlint/cli": "^12.1.4",
- "@commitlint/config-conventional": "^12.1.4",
- "@types/chalk": "^2.2.0",
- "@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": "^4.11.1",
- "typescript": "^4.2.4",
- "vite": "^3.1.0"
- },
- "dependencies": {
- "@types/node": "^14.17.1",
- "@types/tinycolor2": "^1.4.2",
- "chalk": "^4.1.1",
- "clean-css": "^5.1.2",
- "debug": "^4.3.2",
- "esbuild": "^0.11.23",
- "esbuild-plugin-alias": "^0.1.2",
- "tinycolor2": "^1.4.2"
- }
- }
|