-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
110 lines (110 loc) · 3.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vue-color-kit",
"version": "1.0.6",
"description": "Vue color picker",
"main": "dist/vue-color-kit.cjs.js",
"unpkg": "dist/vue-color-kit.global.js",
"jsdelivr": "dist/vue-color-kit.global.js",
"module": "dist/vue-color-kit.esm-bundler.js",
"types": "dist/vue-color-kit.d.ts",
"sideEffects": false,
"author": "Anish George <anishgeorge2690@gmail.com>",
"scripts": {
"dev": "vite serve",
"playground:build": "vite build",
"start": "vite serve --mode production",
"build": "rollup -c rollup.config.js",
"build:dts": "api-extractor run --local --verbose",
"release": "bash scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"size": "size-limit",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "jest --coverage",
"test": "yarn run test:types && yarn run test:unit && yarn run build && yarn run build:dts"
},
"files": [
"dist/*.js",
"dist/*.css",
"dist/vue-color-kit.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"typescript",
"javascript",
"vue",
"vue-next",
"vue3",
"color-picker",
"color picker"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.8.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.3.4",
"@size-limit/preset-small-lib": "^4.7.0",
"@types/jest": "^26.0.15",
"@types/jsdom": "^16.2.5",
"@vitejs/plugin-vue": "^1.0.4",
"@vue/cli-service": "^4.5.6",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-beta.6",
"autoprefixer": "^10.0.2",
"codecov": "^3.8.1",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"jest": "^26.5.3",
"lint-staged": "^10.5.1",
"mini-css-extract-plugin": "^1.6.0",
"pascalcase": "^1.0.0",
"prettier": "^2.1.2",
"prismjs": "^1.22.0",
"rollup": "^2.33.3",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-vue": "^6.0.0-beta.10",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"size-limit": "^4.7.0",
"ts-jest": "^26.4.1",
"typescript": "^4.1.2",
"vite": "^2.0.0-beta.12",
"vue": "^3.0.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/basic.js"
}
],
"peerDependencies": {
"vue": "^3.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anish2690/vue-color-kit.git"
},
"bugs": {
"url": "https://github.com/anish2690/vue-color-kit/issues"
},
"homepage": "https://github.com/anish2690/vue-color-kit#readme"
}