forked from karnama/vueish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.75 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
87
{
"name": "@karnama/vueish",
"version": "0.20.0",
"files": [
"dist",
"types"
],
"main": "./dist/vueish.js",
"module": "./dist/vueish.mjs",
"types": "./types/index.ts",
"web-types": "/dist/web-types.json",
"license": "mit",
"exports": {
".": {
"import": "./dist/vueish.mjs",
"require": "./dist/vueish.js"
}
},
"engines": {
"node": ">=14.13.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "jest",
"test:update-snapshots": "npm run test -- --updateSnapshot",
"lint": "eslint . --fix --ext .ts,.vue,.tsx",
"prepare": "husky install",
"generate:web-types": "ts-node-cwd -P ./tsconfig.node.json utils/web-types/generateWebTypes.ts",
"generate:css-vars": "ts-node-cwd -P ./tsconfig.node.json utils/convertHexObjToVars.ts",
"commit": "commit"
},
"peerDependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/prompt-cli": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@types/eslint": "^8.4.1",
"@types/glob": "^8.0.0",
"@types/jest": "^29.0.0",
"@types/lodash-es": "^4.17.4",
"@types/minimist": "^1.2.1",
"@types/requestidlecallback": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vue/compiler-sfc": "^3.2.11",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "2.0.0-rc.16",
"@vue/vue3-jest": "^29.0.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^29.0.2",
"babel-loader": "^8.2.2",
"commitlint": "^17.0.2",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-vue": "^9.1.1",
"glob": "^8.0.1",
"husky": "^8.0.1",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"jest-junit": "^14.0.0",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^13.0.1",
"lodash-es": "^4.17.20",
"minimist": "^1.2.5",
"postcss": "^8.4.4",
"sass": "^1.32.12",
"tailwindcss": "^3.0.0",
"ts-jest": "^29.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"vite": "^3.0.0",
"vue": "^3.2.25",
"vue-docgen-api": "^4.52.0",
"vue-router": "^4.0.6",
"vue-template-compiler": "^2.6.12"
},
"repository": "[email protected]:karnama/vueish.git",
"lint-staged": {
"*.{ts,vue,tsx}": "eslint --cache --fix"
}
}