-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "@vuesax-alpha/nuxt",
"version": "0.0.5",
"description": "Vuesax Alpha module for Nuxt",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"keywords": [
"vuesax-alpha",
"nuxt"
],
"homepage": "https://github.com/vuesax-alpha/vuesax-alpha-nuxt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vuesax-alpha/vuesax-alpha-nuxt.git"
},
"bugs": {
"url": "https://github.com/vuesax-alpha/vuesax-alpha-nuxt/issues"
},
"scripts": {
"build": "npm run dev:prepare && nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:start": "node playground/.output/server/index.mjs",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint . --ext .ts,.vue,.js --fix",
"lint:test": "eslint . --ext .ts,.vue,.js --max-warnings 0"
},
"peerDependencies": {
"@vuesax-alpha/icons-vue": "^0.0.2-beta.9",
"vuesax-alpha": "^0.2.0-beta.51"
},
"dependencies": {
"@nuxt/kit": "^3.0.0",
"magic-string": "^0.27.0",
"unplugin": "^1.0.1"
},
"devDependencies": {
"@nuxt/module-builder": "^0.2.1",
"@nuxt/schema": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^18.11.18",
"@vuesax-alpha/icons-vue": "0.0.2-beta.9",
"eslint": "^8.29.0",
"nuxt": "^3.0.0",
"typescript": "^4.9.4",
"vue": "^3.2.45",
"vuesax-alpha": "0.2.0-beta.51"
}
}