create-mn-app 0.3.19 → 0.3.21

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": "create-mn-app",
3
- "version": "0.3.19",
3
+ "version": "0.3.21",
4
4
  "description": "Create Midnight Network applications with zero configuration",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -15,9 +15,16 @@
15
15
  "build": "tsc",
16
16
  "dev": "tsc --watch",
17
17
  "prepublishOnly": "npm run build",
18
- "test": "npm run build && node dist/test.js",
18
+ "test": "vitest run",
19
+ "test:watch": "vitest",
20
+ "test:coverage": "vitest run --coverage",
21
+ "test:smoke": "npm run build && node dist/test.js",
19
22
  "test-local": "npm run build && npm link && npx create-mn-app test-app",
20
- "clean": "rm -rf dist test-app"
23
+ "clean": "rm -rf dist test-app",
24
+ "lint": "eslint src/",
25
+ "lint:fix": "eslint src/ --fix",
26
+ "format": "prettier --write \"src/**/*.ts\"",
27
+ "format:check": "prettier --check \"src/**/*.ts\""
21
28
  },
22
29
  "keywords": [
23
30
  "midnight",
@@ -59,7 +66,14 @@
59
66
  "@types/prompts": "^2.4.9",
60
67
  "@types/update-notifier": "^6.0.8",
61
68
  "@types/validate-npm-package-name": "^4.0.2",
62
- "typescript": "^5.0.0"
69
+ "@typescript-eslint/eslint-plugin": "^8.57.0",
70
+ "@typescript-eslint/parser": "^8.57.0",
71
+ "@vitest/coverage-v8": "^4.0.18",
72
+ "eslint": "^10.0.3",
73
+ "eslint-config-prettier": "^10.1.8",
74
+ "prettier": "^3.8.1",
75
+ "typescript": "^5.0.0",
76
+ "vitest": "^4.0.18"
63
77
  },
64
78
  "engines": {
65
79
  "node": ">=22.0.0"