@xpadev-net/niconicomments 0.2.71 → 0.2.72
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/dist/bundle.d.ts +164 -119
- package/dist/bundle.js +240 -176
- package/package.json +16 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xpadev-net/niconicomments",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.72",
|
|
4
4
|
"description": "NiconiComments is a comment drawing library that is somewhat compatible with the official Nico Nico Douga player.",
|
|
5
5
|
"main": "dist/bundle.js",
|
|
6
6
|
"types": "dist/bundle.d.ts",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"typedoc": "typedoc --entryPointStrategy Expand --out ./docs/type/ ./src/",
|
|
13
13
|
"prepublishOnly": "npm run build",
|
|
14
14
|
"check-types": "npx tsc --noEmit --jsx react",
|
|
15
|
-
"eslint": "
|
|
16
|
-
"eslint:fix": "
|
|
17
|
-
"format": "
|
|
18
|
-
"format:fix": "
|
|
19
|
-
"lint": "
|
|
20
|
-
"lint:fix": "
|
|
15
|
+
"eslint": "biome lint src",
|
|
16
|
+
"eslint:fix": "biome lint --write src",
|
|
17
|
+
"format": "biome format src",
|
|
18
|
+
"format:fix": "biome format --write src",
|
|
19
|
+
"lint": "biome check src",
|
|
20
|
+
"lint:fix": "biome check --apply-unsafe src",
|
|
21
21
|
"prepare": "husky install",
|
|
22
22
|
"test": "docker-compose run --rm pw",
|
|
23
23
|
"test-server": "http-server"
|
|
@@ -45,34 +45,28 @@
|
|
|
45
45
|
"homepage": "https://xpadev-net.github.io/niconicomments/",
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@babel/core": "^7.
|
|
49
|
-
"@babel/preset-env": "^7.
|
|
50
|
-
"@
|
|
48
|
+
"@babel/core": "^7.24.4",
|
|
49
|
+
"@babel/preset-env": "^7.24.4",
|
|
50
|
+
"@biomejs/biome": "1.7.1",
|
|
51
|
+
"@playwright/test": "^1.43.0",
|
|
51
52
|
"@rollup/plugin-babel": "^6.0.4",
|
|
52
53
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
53
54
|
"@rollup/plugin-json": "^6.1.0",
|
|
54
55
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
55
56
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
56
|
-
"@types/node": "^20.
|
|
57
|
-
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
58
|
-
"@typescript-eslint/parser": "^7.0.1",
|
|
57
|
+
"@types/node": "^20.12.7",
|
|
59
58
|
"copyfiles": "^2.4.1",
|
|
60
|
-
"eslint": "^8.56.0",
|
|
61
|
-
"eslint-config-prettier": "^9.1.0",
|
|
62
|
-
"eslint-plugin-jsdoc": "^48.1.0",
|
|
63
|
-
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
64
59
|
"http-server": "^14.1.1",
|
|
65
60
|
"husky": "^9.0.11",
|
|
66
61
|
"lint-staged": "^15.2.2",
|
|
67
|
-
"prettier": "^3.2.5",
|
|
68
62
|
"rimraf": "^5.0.5",
|
|
69
|
-
"rollup": "^4.
|
|
63
|
+
"rollup": "^4.14.1",
|
|
70
64
|
"rollup-plugin-dts": "^6.1.0",
|
|
71
65
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
72
66
|
"tslib": "^2.6.2",
|
|
73
|
-
"typedoc": "^0.25.
|
|
67
|
+
"typedoc": "^0.25.13",
|
|
74
68
|
"typedoc-plugin-missing-exports": "^2.2.0",
|
|
75
|
-
"typescript": "^5.
|
|
76
|
-
"valibot": "^0.
|
|
69
|
+
"typescript": "^5.4.5",
|
|
70
|
+
"valibot": "^0.30.0"
|
|
77
71
|
}
|
|
78
72
|
}
|