-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
64 lines (64 loc) · 1.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@nuxt/components",
"version": "2.2.1",
"description": "Auto Import Components for Nuxt.js",
"repository": "nuxt/components",
"license": "MIT",
"exports": {
".": "./dist/index.js",
"./*": "./*",
"./package.json": "./package.json",
"./loader": "./dist/loader.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"lib",
"templates"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt dev test/fixture",
"lint": "eslint --ext .ts,.js,.vue .",
"prepare": "yarn link && yarn link @nuxt/components",
"prepublishOnly": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest --verbose"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"glob": "^7.1.7",
"globby": "^11.0.4",
"scule": "^0.2.1",
"semver": "^7.3.5",
"upath": "^2.0.1",
"vue-template-compiler": "^2.6.14"
},
"devDependencies": {
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/jest": "latest",
"@types/loader-utils": "latest",
"@types/lodash": "latest",
"@types/semver": "latest",
"consola": "latest",
"eslint": "latest",
"jest": "latest",
"loader-utils": "latest",
"nuxt-edge": "latest",
"pug": "latest",
"pug-plain-loader": "latest",
"siroc": "0.15.0",
"standard-version": "latest"
},
"peerDependencies": {
"consola": "*"
}
}