-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 2.91 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
{
"name": "vue-accessible-color-picker",
"version": "5.1.1",
"license": "MIT",
"description": "Color picker component for Vue.js",
"author": {
"name": "Philipp Rudloff",
"url": "https://kleinfreund.de"
},
"homepage": "https://vue-accessible-color-picker.netlify.app",
"repository": {
"type": "git",
"url": "git+https://github.com/kleinfreund/vue-accessible-color-picker.git"
},
"bugs": {
"url": "https://github.com/kleinfreund/vue-accessible-color-picker/issues"
},
"keywords": [
"color picker",
"component",
"hsl",
"hwb",
"vue"
],
"type": "module",
"exports": {
".": {
"types": "./dist/ColorPicker.d.ts",
"default": "./dist/ColorPicker.js"
},
"./styles": "./dist/ColorPicker.css"
},
"types": "./dist/ColorPicker.d.ts",
"files": [
"dist/ColorPicker.css",
"dist/ColorPicker.d.ts",
"dist/ColorPicker.js"
],
"sideEffects": false,
"scripts": {
"clean:dist": "rimraf dist",
"clean:dist-source": "rimraf dist/src",
"build": "run-s clean:dist build:lib build:types build:consolidate-types clean:dist-source",
"build:lib": "vite build",
"build:types": "vue-tsc --project tsconfig.build-types.json",
"build:consolidate-types": "api-extractor run --local --verbose",
"start": "vite",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "run-p lint:*",
"lint:code": "eslint",
"lint:lockfile": "lockfile-lint --path package-lock.json --validate-hosts --allowed-hosts npm",
"lint:package": "publint",
"lint:types": "vue-tsc --noEmit",
"fix": "run-p fix:*",
"fix:code": "npm run lint:code -- --fix",
"release": "semantic-release",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vue": "^3.2.x"
},
"devDependencies": {
"@babel/types": "^7.26.3",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "^9.17.0",
"@microsoft/api-extractor": "^7.48.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.2",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/eslint__js": "^8.42.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lockfile-lint": "^4.14.0",
"npm-run-all2": "^7.0.2",
"postcss": "^8.4.49",
"publint": "^0.2.12",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"semantic-release": "^24.2.0",
"standard": "^17.1.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.18.1",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}