@bhsd/codemirror-css-color-picker 6.3.1 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,40 +1,72 @@
1
1
  {
2
- "name": "@bhsd/codemirror-css-color-picker",
3
- "description": "Enables a color picker input next to css colors",
4
- "version": "6.3.1",
5
- "author": {
6
- "name": "Faris Masad",
7
- "email": "faris@repl.it"
8
- },
9
- "type": "module",
10
- "main": "dist/index.cjs",
11
- "files": [
12
- "dist"
13
- ],
14
- "exports": {
15
- "import": "./dist/index.js",
16
- "require": "./dist/index.cjs"
17
- },
18
- "types": "dist/index.d.ts",
19
- "module": "dist/index.js",
20
- "sideEffects": false,
21
- "license": "MIT",
22
- "scripts": {
23
- "build": "cm-buildhelper src/index.ts"
24
- },
25
- "peerDependencies": {
26
- "@codemirror/language": "^6.0.0",
27
- "@codemirror/state": "^6.0.0",
28
- "@codemirror/view": "^6.0.0"
29
- },
30
- "devDependencies": {
31
- "@codemirror/buildhelper": "^0.1.16",
32
- "@codemirror/language": "^6.0.0",
33
- "@codemirror/state": "^6.0.0",
34
- "@codemirror/view": "^6.0.0"
35
- },
36
- "repository": {
37
- "type": "git",
38
- "url": "https://github.com/bhsd-harry/Codemirror-CSS-color-picker"
39
- }
2
+ "name": "@bhsd/codemirror-css-color-picker",
3
+ "version": "7.0.0",
4
+ "description": "Enables a color picker input next to CSS colors",
5
+ "homepage": "https://github.com/bhsd-harry/Codemirror-CSS-color-picker#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/bhsd-harry/Codemirror-CSS-color-picker/issues"
8
+ },
9
+ "license": "MIT",
10
+ "contributors": [
11
+ "Faris Masad <faris@repl.it>",
12
+ "Bhsd"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/bhsd-harry/Codemirror-CSS-color-picker"
17
+ },
18
+ "type": "module",
19
+ "files": [
20
+ "/dist/index.js",
21
+ "/dist/*.d.ts"
22
+ ],
23
+ "main": "dist/index.js",
24
+ "types": "dist/index.d.ts",
25
+ "sideEffects": false,
26
+ "scripts": {
27
+ "ls": "npm i --package-lock-only && npm ls --package-lock-only --all --omit=dev",
28
+ "prepublishOnly": "npm run build",
29
+ "lint:ts": "tsc --noEmit && eslint --cache .",
30
+ "lint:md": "markdownlint-cli2 '**/*.md'",
31
+ "lint": "npm run lint:ts && npm run lint:md",
32
+ "build": "tsc && node build.js && gsed '/^\\/\\/ /d' build/index.js > dist/index.js",
33
+ "build:test": "tsc --project test/tsconfig.json && npm test",
34
+ "test": "mocha"
35
+ },
36
+ "dependencies": {
37
+ "@bhsd/common": "^2.1.0",
38
+ "@codemirror/language": "^6.12.3",
39
+ "@codemirror/state": "^6.6.0",
40
+ "@codemirror/view": "^6.41.0",
41
+ "color-name": "^2.1.0",
42
+ "color-space": "^2.3.2"
43
+ },
44
+ "devDependencies": {
45
+ "@bhsd/code-standard": "^2.3.0",
46
+ "@codemirror/lang-css": "^6.3.1",
47
+ "@codemirror/lang-html": "^6.4.11",
48
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
49
+ "@stylistic/eslint-plugin": "^5.10.0",
50
+ "@types/color-name": "^2.0.0",
51
+ "@types/color-rgba": "^2.1.3",
52
+ "@types/mocha": "^10.0.10",
53
+ "@types/node": "^24.11.0",
54
+ "@typescript-eslint/eslint-plugin": "^8.59.0",
55
+ "@typescript-eslint/parser": "^8.59.0",
56
+ "color-rgba": "^3.0.0",
57
+ "esbuild": "^0.28.0",
58
+ "eslint": "^10.2.1",
59
+ "eslint-plugin-es-x": "^9.6.0",
60
+ "eslint-plugin-jsdoc": "^62.9.0",
61
+ "eslint-plugin-jsonc": "^3.1.2",
62
+ "eslint-plugin-promise": "^7.2.1",
63
+ "eslint-plugin-regexp": "^3.1.0",
64
+ "eslint-plugin-unicorn": "^64.0.0",
65
+ "markdownlint-cli2": "^0.22.1",
66
+ "mocha": "^11.7.5",
67
+ "typescript": "^6.0.3"
68
+ },
69
+ "overrides": {
70
+ "eslint": "^10.2.1"
71
+ }
40
72
  }