-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 2.77 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
{
"name": "vue-accessible-color-picker",
"version": "5.1.0",
"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": "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": {
"prebuild": "rimraf dist",
"build": "npm run build:lib",
"postbuild": "rimraf dist/src",
"build:lib": "vite build",
"postbuild:lib": "npm run build:types",
"build:types": "vue-tsc --project tsconfig.build-types.json",
"postbuild:types": "api-extractor run --local --verbose",
"start": "vite",
"test": "vitest run --coverage",
"lint:code": "eslint",
"lint:code:fix": "npm run lint:code -- --fix",
"lint:lockfile": "lockfile-lint --path package-lock.json --validate-hosts --allowed-hosts npm",
"lint:package": "publint",
"lint:types": "vue-tsc --noEmit",
"release": "semantic-release",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vue": "^3.2.x"
},
"devDependencies": {
"@babel/types": "^7.25.8",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "^9.13.0",
"@microsoft/api-extractor": "^7.47.11",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/eslint__js": "^8.42.3",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.3",
"@vue/eslint-config-typescript": "^14.1.1",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.29.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lockfile-lint": "^4.14.0",
"postcss": "^8.4.47",
"publint": "^0.2.11",
"rimraf": "^6.0.1",
"sass": "^1.80.3",
"semantic-release": "^24.1.3",
"standard": "^17.1.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9",
"vitest": "^2.1.3",
"vue": "^3.5.12",
"vue-tsc": "^2.1.6"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}