-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.94 KB
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
{
"name": "vue-task-management",
"version": "1.0.3",
"description": "A Vue 3 Composition API library designed for task management processes",
"license": "MIT",
"author": "Sean Cheong Zhen Xiong (https://github.com/seancheong)",
"homepage": "https://github.com/seancheong/vue-task-management",
"repository": {
"type": "git",
"url": "https://github.com/seancheong/vue-task-management.git"
},
"bugs": "https://github.com/seancheong/vue-task-management/issues",
"main": "dist/vue-task-management.umd.js",
"module": "dist/vue-task-management.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"vue",
"vue3",
"typescript",
"composition-api",
"task-management",
"library"
],
"scripts": {
"lint": "eslint --ext .js,.ts,.vue src",
"dev": "vite",
"build": "rimraf dist && npm run lint && vue-tsc && vite build",
"build-library": "BUILD_LIB=true npm run build && mv dist/src/lib/* dist/ && rimraf dist/src && rimraf dist/vite.svg",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"vue": "^3.4.29"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.21.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.5",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vite-plugin-dts": "^3.7.2",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.5"
}
}