-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.42 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
{
"name": "vue-turn-clock",
"private": false,
"version": "1.0.2",
"author": "li min tao<https://github.com/limintao>",
"license": "MIT",
"type": "module",
"keywords": [
"countdown",
"flip-clock",
"time",
"clock",
"vue",
"typescript",
"vite"
],
"main": "./lib/index.umd.js",
"module": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.es.js",
"require": "./lib/index.umd.js",
"types": "./lib/index.d.ts"
},
"./style.css": {
"import": "./lib/style.css",
"require": "./lib/style.css"
}
},
"files": ["lib", "example"],
"workspaces": ["packages/*"],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"peerDependencies": {
"vue": "^3.0.1"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"less": "^4.1.3",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-libcss": "^1.0.6",
"vue": "^3.2.47",
"vue-tsc": "^1.4.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limintao/vue-turn-clock.git"
},
"homepage": "https://github.com/limintao/vue-turn-clock/blob/master/README.md"
}