-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "v-highlight-3",
"version": "0.3.2",
"description": "Highlight words with this simple and dependency-less Vue 3 directive",
"module": "dist/index.mjs",
"main": "dist/index.js",
"jsnext:main": "dist/index.mjs",
"umd:main": "dist/index.umd.js",
"source": "src/index.ts",
"types": "types/index.d.ts",
"repository": "https://github.com/open-southeners/v-highlight.git",
"author": "Rubén Robles <[email protected]>",
"license": "MIT",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"bundle": "microbundle -f es,cjs,umd",
"watch": "bundle --watch",
"clean": "rimraf dist",
"build": "npm-run-all --silent clean -p bundle",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"vue": "^3.2.19"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-v8": "^1.1.0",
"@vue/test-utils": "^2.3.1",
"jsdom": "^21.1.0",
"microbundle": "^0.13.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tsc": "^2.0.3",
"typescript": "^4.4.3",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"files": [
"dist/*",
"types/*"
],
"packageManager": "[email protected]"
}