jj 2.7.2 → 2.8.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/lib/bundle.cjs +24 -17
- package/lib/bundle.cjs.map +1 -1
- package/lib/bundle.d.cts +19 -18
- package/lib/bundle.d.ts +19 -18
- package/lib/bundle.global.js +24 -17
- package/lib/bundle.global.js.map +1 -1
- package/lib/bundle.js +24 -17
- package/lib/bundle.js.map +1 -1
- package/lib/bundle.min.cjs +1 -1
- package/lib/bundle.min.cjs.map +1 -1
- package/lib/bundle.min.d.cts +19 -18
- package/lib/bundle.min.d.ts +19 -18
- package/lib/bundle.min.global.js +1 -1
- package/lib/bundle.min.global.js.map +1 -1
- package/lib/bundle.min.js +1 -1
- package/lib/bundle.min.js.map +1 -1
- package/package.json +12 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jj",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"description": "A minimal DOM manipulation library with web components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript",
|
|
@@ -31,14 +31,15 @@
|
|
|
31
31
|
"SKILL.md"
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
|
-
"doc": "typedoc src/index.ts",
|
|
35
|
-
"prebuild": "rm -rf lib doc",
|
|
36
|
-
"build": "tsup --dts && npm run doc",
|
|
37
|
-
"typecheck": "tsc --noEmit",
|
|
38
34
|
"fmt": "prettier --write .",
|
|
35
|
+
"lint": "eslint",
|
|
36
|
+
"typecheck": "tsc --noEmit",
|
|
39
37
|
"test": "npm run typecheck && node --import tsx --test",
|
|
40
38
|
"test:watch": "npm run typecheck && node --import tsx --test --watch",
|
|
41
39
|
"test:coverage": "npm run typecheck && node --import tsx --test --experimental-test-coverage",
|
|
40
|
+
"doc": "typedoc src/index.ts",
|
|
41
|
+
"prebuild": "rm -rf lib doc",
|
|
42
|
+
"build": "tsup --dts && npm run doc",
|
|
42
43
|
"get-bundle-size": "gzip -9 -c lib/bundle.min.js | wc -c | numfmt --to=iec-i --suffix=B",
|
|
43
44
|
"preversion": "npm run fmt && npm t",
|
|
44
45
|
"prepublishOnly": "npm run build",
|
|
@@ -51,14 +52,19 @@
|
|
|
51
52
|
"author": "Alex Ewerlöf",
|
|
52
53
|
"license": "MIT",
|
|
53
54
|
"devDependencies": {
|
|
55
|
+
"@eslint/js": "^10.0.1",
|
|
54
56
|
"@types/jsdom": "^27.0.0",
|
|
55
57
|
"@types/node": "^24.7.2",
|
|
58
|
+
"eslint": "^10.0.2",
|
|
59
|
+
"globals": "^17.4.0",
|
|
60
|
+
"jiti": "^2.6.1",
|
|
56
61
|
"jsdom": "^27.4.0",
|
|
57
62
|
"prettier": "^3.6.2",
|
|
58
63
|
"tsup": "^8.5.1",
|
|
59
64
|
"tsx": "^4.20.6",
|
|
60
65
|
"typedoc": "^0.28.14",
|
|
61
|
-
"typescript": "^5.9.3"
|
|
66
|
+
"typescript": "^5.9.3",
|
|
67
|
+
"typescript-eslint": "^8.56.1"
|
|
62
68
|
},
|
|
63
69
|
"dependencies": {
|
|
64
70
|
"jty": "^4.0.0"
|