-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
49 lines (49 loc) · 1.65 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
{
"name": "@dangvanthanh/vue-clock",
"version": "0.2.6",
"description": "Simple clock using Vue.js",
"author": "Dang Van Thanh <[email protected]>",
"main": "dist/index.ssr.js",
"browser": "dist/index.esm.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.min.js",
"style": "dist/index.css",
"scripts": {
"prepare": "git config core.hooksPath .hooks",
"build": "rimraf dist && npm run build:unpkg && npm run build:es && npm run build:ssr",
"build:unpkg": "rollup -c build/rollup.config.unpkg.js",
"build:es": "rollup -c build/rollup.config.es.js",
"build:ssr": "rollup -c build/rollup.config.cjs.js",
"release": "rimraf dist && npm run build && npx clean-publish",
"lint": "bunx @biomejs/biome check ./src --write",
"format": "bunx @biomejs/biome format ./src --write",
"update": "bunx npm-check-updates -ui"
},
"keywords": ["vue", "vue-clock", "clock"],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"esbuild": "0.23.0",
"pascal-case": "^3.1.2",
"rimraf": "^6.0.1",
"rollup": "2.79.0",
"rollup-plugin-esbuild": "6.1.1",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-vue": "5.1.9",
"vue": "^2.7.16",
"vue-template-compiler": "^2.7.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dangvanthanh/vue-clock.git"
},
"bugs": {
"url": "https://github.com/dangvanthanh/vue-clock/issues"
},
"homepage": "https://github.com/dangvanthanh/vue-clock#readme",
"files": ["dist", "src", "package.json", "README.md", "LICENSE"]
}