@nuxt/modules 0.5.0 → 0.6.0-d2962e

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,28 +1,34 @@
1
1
  {
2
2
  "name": "@nuxt/modules",
3
- "version": "0.5.0",
3
+ "version": "0.6.0-d2962e",
4
4
  "license": "MIT",
5
- "main": "dist/modules.json",
5
+ "main": "./modules.json",
6
6
  "files": [
7
- "dist"
7
+ "modules.json"
8
8
  ],
9
9
  "scripts": {
10
- "build": "yarn cli build",
11
- "cli": "ts-node ./scripts/cli",
12
- "release": "yarn cli version && npm publish",
13
- "sync": "yarn cli sync"
10
+ "build": "pnpm cli build",
11
+ "cli": "jiti ./lib/cli",
12
+ "website:build": "pnpm build && nuxi build website",
13
+ "website:dev": "pnpm build && nuxi dev website",
14
+ "lint": "eslint --ext .vue,.ts .",
15
+ "release": "pnpm cli version && npm publish",
16
+ "sync": "pnpm cli sync",
17
+ "test": "pnpm lint && pnpm sync"
14
18
  },
15
19
  "devDependencies": {
16
- "@nuxtjs/eslint-config-typescript": "^3.0.0",
17
- "@types/node": "^14.6.0",
18
- "axios": "^0.20.0",
19
- "defu": "^3.1.0",
20
- "execa": "^4.0.3",
21
- "fs-extra": "^9.0.1",
22
- "globby": "^11.0.1",
23
- "hasha": "^5.2.0",
24
- "js-yaml": "^3.14.0",
25
- "ts-node": "^9.0.0",
26
- "typescript": "^4.0.2"
27
- }
28
- }
20
+ "@nuxt/eslint-config": "^0.1.1",
21
+ "@types/js-yaml": "^4.0.5",
22
+ "@types/node": "^18.8.5",
23
+ "defu": "^6.1.0",
24
+ "eslint": "^8.31.0",
25
+ "eslint-plugin-nuxt": "^4.0.0",
26
+ "globby": "^13.1.2",
27
+ "hasha": "^5.2.2",
28
+ "jiti": "^1.16.0",
29
+ "js-yaml": "^4.1.0",
30
+ "ohmyfetch": "^0.4.19",
31
+ "typescript": "^4.8.4"
32
+ },
33
+ "packageManager": "pnpm@7.22.0"
34
+ }