-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "vue-text-styler",
"version": "1.1.4",
"description": "A Vue 3 text input component, that let's you style text with Regex and UnoCSS in real time",
"packageManager": "pnpm@8.5.1",
"author": "Rettend",
"license": "MIT",
"homepage": "https://github.com/Rettend/vue-text-styler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Rettend/vue-text-styler.git"
},
"bugs": "https://github.com/Rettend/vue-text-styler/issues",
"keywords": [
"vue component",
"style input",
"color input",
"text input",
"unocss"
],
"sideEffects": true,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:playground": "vite build playground",
"dev": "vite serve playground",
"stub": "unbuild --stub",
"test": "vitest --ui --coverage",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"typecheck": "tsc --noEmit",
"release": "unbuild && bumpp && pnpm publish"
},
"dependencies": {
"isomorphic-dompurify": "^1.5.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.6",
"@iconify-json/ph": "^1.1.5",
"@types/dompurify": "^3.0.2",
"@types/node": "^20.1.4",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-istanbul": "^0.31.1",
"@vitest/ui": "^0.31.1",
"@vue/test-utils": "^2.3.2",
"@vueuse/core": "^10.1.2",
"bumpp": "^9.1.0",
"eslint": "^8.40.0",
"jsdom": "^22.1.0",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"unocss": "^0.52.3",
"vite": "^4.3.8",
"vitest": "^0.31.1"
}
}