@w5s/dev 3.1.2 → 3.1.3

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.
Files changed (1) hide show
  1. package/package.json +26 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/dev",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "description": "Shared development constants and functions",
5
5
  "keywords": [
6
6
  "config",
@@ -42,11 +42,34 @@
42
42
  "!**/__tests__/**"
43
43
  ],
44
44
  "scripts": {
45
- "postpack": "npx clean-package restore"
45
+ "build": "npx run-p \"build:*\"",
46
+ "build:tsc": "npx tsup",
47
+ "clean": "npx run-p \"clean:*\"",
48
+ "clean:tsc": "rm -rf dist",
49
+ "docs": "node ../../markdown.mjs",
50
+ "format": "npx run-p \"format:*\"",
51
+ "format:src": "eslint . --fix",
52
+ "lint": "npx run-p \"lint:*\"",
53
+ "lint:src": "eslint .",
54
+ "postpack": "npx clean-package restore",
55
+ "prepack": "npx clean-package",
56
+ "prepare": "npx run-p \"prepare:*\"",
57
+ "prepare:empty": ":",
58
+ "prepublishOnly": "npm run clean;npm run build",
59
+ "spellcheck": "cspell --no-progress '**'",
60
+ "test": "npx run-p \"test:*\"",
61
+ "test:src": "vitest run"
46
62
  },
47
63
  "dependencies": {
48
64
  "@types/eslint": "^9.0.0"
49
65
  },
66
+ "devDependencies": {
67
+ "@w5s/tsup-config": "2.0.4",
68
+ "tsup": "8.5.1",
69
+ "vite": "7.3.1",
70
+ "vitest": "4.0.18"
71
+ },
72
+ "clean-package": "../../clean-package.config.mjs",
50
73
  "engines": {
51
74
  "node": ">=20.0.0"
52
75
  },
@@ -54,5 +77,5 @@
54
77
  "access": "public"
55
78
  },
56
79
  "sideEffect": false,
57
- "gitHead": "648be101c2d4f915b97ed7e318da47a6ac19eb5c"
80
+ "gitHead": "550810ad9a8d35378bb00361cd0080bd67058fc5"
58
81
  }