-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.54 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
{
"name": "yet-another-color-picker",
"version": "4.0.0",
"license": "MIT",
"description": "Color picker web component",
"author": {
"name": "Philipp Rudloff",
"url": "https://kleinfreund.de"
},
"homepage": "https://yet-another-color-picker.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/kleinfreund/yet-another-color-picker.git"
},
"bugs": {
"url": "https://github.com/kleinfreund/yet-another-color-picker/issues"
},
"keywords": [
"color picker",
"web component",
"hsl",
"hwb"
],
"engines": {
"npm": "^10.0.0"
},
"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.js",
"dist/ColorPicker.d.ts"
],
"sideEffects": false,
"scripts": {
"build:js": "tsup --minify terser",
"build:css": "npx clean-css-cli src/ColorPicker.css --output dist/ColorPicker.css",
"prebuild": "rimraf dist",
"build": "npm run build:js",
"postbuild": "npm run build:css",
"start": "vite",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"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": "tsc --noEmit",
"release": "semantic-release",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"lit-html": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@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",
"@vitest/coverage-v8": "^2.1.3",
"clean-css-cli": "^5.6.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lit-html": "^3.2.1",
"lockfile-lint": "^4.14.0",
"postcss": "^8.4.47",
"publint": "^0.2.11",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.3",
"terser": "^5.36.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}