thunderous 0.6.4 → 1.0.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "thunderous",
3
- "version": "0.6.4",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -32,13 +32,17 @@
32
32
  "scripts": {
33
33
  "demo": "cd demo && npm start",
34
34
  "www": "cd www && npm run dev",
35
- "build": "tsup src/index.ts --format cjs,esm --dts --no-clean"
35
+ "build": "tsup src/index.ts --format cjs,esm --dts --no-clean",
36
+ "test": "find src -name '*.test.ts' | xargs c8 node --import tsx --test",
37
+ "lint": "eslint ."
36
38
  },
37
39
  "devDependencies": {
38
40
  "@types/dompurify": "^3.2.0",
39
41
  "@types/eslint": "^8.56.10",
40
- "@typescript-eslint/eslint-plugin": "^7.1.1",
41
- "@typescript-eslint/parser": "^7.1.1",
42
+ "@types/node": "^22.10.1",
43
+ "@typescript-eslint/eslint-plugin": "^8.17.0",
44
+ "@typescript-eslint/parser": "^8.17.0",
45
+ "c8": "^10.1.2",
42
46
  "eslint": "^8.57.0",
43
47
  "eslint-plugin-import": "^2.31.0",
44
48
  "eslint-plugin-node": "^11.1.0",
@@ -46,17 +50,7 @@
46
50
  "express": "^4.17.1",
47
51
  "prettier": "^3.3.3",
48
52
  "tsup": "^8.3.0",
49
- "typescript": "^5.6.3"
50
- },
51
- "dependencies": {
52
- "dompurify": "^3.2.1"
53
- },
54
- "peerDependenciesMeta": {
55
- "@webcomponents/scoped-custom-element-registry": {
56
- "optional": true
57
- }
58
- },
59
- "peerDependencies": {
60
- "@webcomponents/scoped-custom-element-registry": "^0.0.9"
53
+ "tsx": "^4.19.2",
54
+ "typescript": "^5.7.2"
61
55
  }
62
56
  }