-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.05 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
{
"name": "@logustra/vountdown",
"version": "0.1.10",
"description": "A minimalist countdown component for vue.js 2-3",
"keywords": [
"vue",
"vue3",
"countdown",
"timer",
"component",
"ui",
"frontend"
],
"license": "MIT",
"author": "Faizal Andyka",
"repository": {
"type": "git",
"url": "https://github.com/logustra/vountdown"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"bugs": "https://github.com/logustra/vountdown/issues",
"scripts": {
"prepare": "husky install",
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage",
"dev": "vite --mode dev",
"build": "pnpm clean:dist && vite build --mode prod && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm clean:coverage && vitest --coverage --mode test"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"@vue/composition-api": "^1.4.9",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"vue-demi": "^0.12.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.18.9",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.21",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/test-utils": "^2.0.0-rc.18",
"c8": "^7.11.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.11.0",
"happy-dom": "^2.49.0",
"husky": "^7.0.4",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vitest": "^0.7.6",
"vue": "^3.2.31",
"vue-tsc": "^0.29.8"
},
"volta": {
"node": "14.19.1"
}
}