nextia 6.0.0 → 6.0.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "nextia",
3
3
  "description": "Create fast web applications",
4
- "version": "6.0.0",
4
+ "version": "6.0.2",
5
5
  "engines": {
6
6
  "node": ">22"
7
7
  },
@@ -24,13 +24,6 @@
24
24
  "nextia": "src/bin.js"
25
25
  },
26
26
  "main": "src/lib.js",
27
- "peerDependencies": {
28
- "react": "^19.2.3",
29
- "react-dom": "^19.2.3"
30
- },
31
- "devDependencies": {
32
- "@biomejs/biome": "^2.3.14"
33
- },
34
27
  "scripts": {
35
28
  "clean": "rm -fr node_modules package-lock.json pnpm-lock.yaml .coverage out my-app",
36
29
  "format": "biome format",
@@ -38,5 +31,12 @@
38
31
  "check": "biome check --reporter=summary",
39
32
  "test": "node src/bin.js",
40
33
  "test:my-app": "node src/bin.js my-app"
34
+ },
35
+ "peerDependencies": {
36
+ "react": "^19.2.3",
37
+ "react-dom": "^19.2.3"
38
+ },
39
+ "devDependencies": {
40
+ "@biomejs/biome": "^2.3.14"
41
41
  }
42
- }
42
+ }
@@ -4,9 +4,6 @@
4
4
  "version": "0.0.0",
5
5
  "type": "module",
6
6
  "private": true,
7
- "eslintConfig": {
8
- "extends": "./node_modules/standard/eslintrc.json"
9
- },
10
7
  "scripts": {
11
8
  "dev": "vite --mode dev",
12
9
  "clean": "rm -fr node_modules package-lock.json pnpm-lock.yaml .coverage out",
@@ -29,7 +26,6 @@
29
26
  "@vitest/coverage-v8": "4.0.18",
30
27
  "autoprefixer": "^10.4.24",
31
28
  "jsdom": "^28.0.0",
32
- "standard": "^17.1.2",
33
29
  "vite": "^7.3.1",
34
30
  "vitest": "4.0.18"
35
31
  },
package/biome.json DELETED
@@ -1,43 +0,0 @@
1
- {
2
- "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3
- "assist": {
4
- "actions": {
5
- "source": {
6
- "organizeImports": "off"
7
- }
8
- }
9
- },
10
- "linter": {
11
- "enabled": true,
12
- "rules": {
13
- "recommended": true,
14
- "correctness": {
15
- "noUnusedVariables": "error"
16
- }
17
- }
18
- },
19
- "formatter": {
20
- "enabled": true,
21
- "formatWithErrors": false,
22
- "indentStyle": "space",
23
- "indentWidth": 2
24
- },
25
- "javascript": {
26
- "formatter": {
27
- "semicolons": "asNeeded",
28
- "quoteStyle": "single",
29
- "jsxQuoteStyle": "double",
30
- "trailingCommas": "none"
31
- }
32
- },
33
- "css": {
34
- "formatter": {
35
- "enabled": true
36
- }
37
- },
38
- "json": {
39
- "formatter": {
40
- "enabled": true
41
- }
42
- }
43
- }