@pubann/textae 14.3.0 → 14.3.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@pubann/textae",
3
3
  "description": "text annotation editor",
4
- "version": "14.3.0",
4
+ "version": "14.3.2",
5
5
  "author": "jdkim",
6
6
  "bugs": {
7
7
  "url": "https://github.com/pubannotation/textae/issues"
@@ -10,13 +10,14 @@
10
10
  "@codemirror/lang-javascript": "^6.2.4",
11
11
  "@codemirror/language": "^6.11.3",
12
12
  "@codemirror/legacy-modes": "^6.5.2",
13
+ "@pubann/simple-inline-text-annotation": "^1.1.1",
13
14
  "ajv": "^8.17.1",
14
15
  "ajv-formats": "3.0.1",
15
16
  "ajv-keywords": "^5.1.0",
16
17
  "alertifyjs": "1.14.0",
17
18
  "array-move": "4.0.0",
18
19
  "codemirror": "^6.0.2",
19
- "debounce": "2.2.0",
20
+ "debounce": "3.0.0",
20
21
  "delegate": "3.2.0",
21
22
  "dohtml": "0.1.0",
22
23
  "dropzone": "5.9.3",
@@ -28,37 +29,30 @@
28
29
  "observ": "0.2.0",
29
30
  "path-browserify": "1.0.1",
30
31
  "popover-autocomplete": "^1.0.1",
31
- "@pubann/simple-inline-text-annotation": "^1.1.1",
32
32
  "sticky-js": "1.3.0",
33
33
  "throttleit": "^2.1.0",
34
34
  "uuid": "^13.0.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@eslint/eslintrc": "^3.3.1",
38
- "@eslint/js": "^9.37.0",
37
+ "@biomejs/biome": "^2.3.4",
39
38
  "clean-css-cli": "^5.6.3",
40
39
  "connect": "3.7.0",
41
40
  "cpx2": "^8.0.0",
42
- "eslint": "^9.37.0",
43
- "eslint-config-prettier": "^10.1.8",
44
- "eslint-plugin-unused-imports": "^4.2.0",
45
- "globals": "^16.4.0",
46
41
  "husky": "^9.1.7",
47
42
  "less": "^4.4.2",
48
43
  "less-watch-compiler": "1.16.3",
49
- "lint-staged": "^16.2.3",
44
+ "lint-staged": "^16.2.6",
50
45
  "mkdirp": "3.0.1",
51
46
  "npm-run-all": "4.1.5",
52
47
  "open-cli": "^8.0.0",
53
- "prettier": "^3.6.2",
54
48
  "replace-in-file": "^8.3.0",
55
- "rimraf": "6.0.1",
49
+ "rimraf": "6.1.0",
56
50
  "serve-favicon": "2.5.1",
57
51
  "serve-static": "^2.2.0",
58
52
  "source-map-loader": "^5.0.0",
59
53
  "standard-version": "^9.5.0",
60
54
  "terser-webpack-plugin": "^5.3.14",
61
- "webpack": "^5.102.0",
55
+ "webpack": "^5.102.1",
62
56
  "webpack-cli": "^6.0.1"
63
57
  },
64
58
  "files": [
@@ -73,18 +67,21 @@
73
67
  ],
74
68
  "license": "MIT",
75
69
  "lint-staged": {
76
- "*.js": [
77
- "eslint --fix",
78
- "prettier --write"
70
+ "src/**/*.js": [
71
+ "npx @biomejs/biome check --write --unsafe",
72
+ "npx @biomejs/biome format --write"
73
+ ],
74
+ "src/**/*.json": [
75
+ "npx @biomejs/biome format --write"
79
76
  ],
80
- "*.json": [
81
- "prettier --write"
77
+ "dev/**/*.js": [
78
+ "npx @biomejs/biome format --write"
82
79
  ],
83
80
  "*.less": [
84
- "prettier --write"
81
+ "npx @biomejs/biome format --write"
85
82
  ],
86
83
  "userAcceptanceTest/**/*.md": [
87
- "prettier --write"
84
+ "npx @biomejs/biome format --write"
88
85
  ]
89
86
  },
90
87
  "main": "src/development.html",
@@ -112,7 +109,7 @@
112
109
  "dist:copy:images": "cpx 'src/lib/css/images/**.png' dist/lib/css/images",
113
110
  "dist:copy:js": "cpx tmp/$npm_package_name-$npm_package_version'*'.js dist/lib",
114
111
  "dist:less": "lessc 'src/lib/css/textae.less' tmp/css/$npm_package_name-$npm_package_version.css",
115
- "dist:lint": "npx prettier --check 'src/lib/**/*.js' 'src/lib/css/*.less' && eslint src/lib",
112
+ "dist:lint": "npx @biomejs/biome check --error-on-warnings src/lib",
116
113
  "dist:replace:version": "replace-in-file /{{version}}/g $npm_package_version dist/editor.html,dist/demo/**/*.html --isRegex",
117
114
  "postinstall": "node ./scripts/postinstall.js",
118
115
  "release": "standard-version -a",