-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "release-timeline",
"type": "module",
"version": "0.6.0",
"private": false,
"source": "src/index.ts",
"author": "Ruslan Makarov",
"license": "MIT",
"homepage": "https://vue-faq.org/ru/release-timeline",
"repository": {
"type": "git",
"url": "https://github.com/vuesence/release-timeline.git"
},
"bugs": {
"url": "https://github.com/vuesence/release-timeline/issues",
"email": "[email protected]"
},
"keywords": [
"vue",
"github",
"release",
"timeline"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.mjs",
"require": "./dist/index.umd.js"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
"build:lib": "vite --config vite.config-lib.ts build"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@types/node": "^20.11.16",
"@vitejs/plugin-vue": "^5.0.3",
"sass": "^1.70.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vue": "^3.4.15"
}
}