@nuxt/modules 0.5.0 → 0.6.0-0050cf

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,44 @@
1
1
  {
2
2
  "name": "@nuxt/modules",
3
- "version": "0.5.0",
3
+ "version": "0.6.0-0050cf",
4
4
  "license": "MIT",
5
- "main": "dist/modules.json",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/nuxt/modules.git"
8
+ },
9
+ "homepage": "https://nuxt.com/modules",
10
+ "main": "./modules.json",
6
11
  "files": [
7
- "dist"
12
+ "modules.json"
8
13
  ],
9
14
  "scripts": {
10
- "build": "yarn cli build",
11
- "cli": "ts-node ./scripts/cli",
12
- "release": "yarn cli version && npm publish",
13
- "sync": "yarn cli sync"
15
+ "build": "pnpm cli build",
16
+ "cli": "jiti ./lib/cli",
17
+ "website:build": "pnpm build && nuxt build website",
18
+ "website:dev": "pnpm build && nuxt dev website",
19
+ "lint": "eslint",
20
+ "release": "pnpm cli version && npm publish --tag latest",
21
+ "sync": "pnpm cli sync",
22
+ "test": "pnpm lint && pnpm sync"
14
23
  },
15
24
  "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"
25
+ "@nuxt/eslint-config": "^0.7.5",
26
+ "@octokit/rest": "^21.1.0",
27
+ "@types/js-yaml": "^4.0.9",
28
+ "@types/node": "^18.19.70",
29
+ "defu": "^6.1.4",
30
+ "eslint": "^9.18.0",
31
+ "globby": "^14.0.2",
32
+ "hasha": "^6.0.0",
33
+ "jiti": "^2.4.2",
34
+ "js-yaml": "^4.1.0",
35
+ "ofetch": "^1.4.1",
36
+ "p-limit": "^6.2.0",
37
+ "std-env": "^3.8.0",
38
+ "typescript": "^5.7.3"
39
+ },
40
+ "packageManager": "pnpm@9.15.3",
41
+ "dependencies": {
42
+ "dotenv": "^16.4.7"
27
43
  }
28
- }
44
+ }