-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
85 lines (85 loc) · 2.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@varlet/nuxt",
"type": "module",
"version": "0.1.5",
"description": "varlet module for nuxt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/varletjs/varlet-nuxt.git"
},
"bugs": "https://github.com/varletjs/varlet-nuxt/issues",
"keywords": [
"varlet",
"nuxt"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepack": "nuxt-module-build build",
"clear": "rm -rf ./playground/node_modules/.cache && rm -rf ./playground/.nuxt",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"build": "npm run dev:prepare && nuxt-module-build build",
"gen": "npx changelogen --release",
"release:beta": "npm run build && npx changelogen --canary && npm publish --beta && git push --follow-tags",
"release": "npm run build && npx changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint . --fix"
},
"peerDependencies": {
"@varlet/ui": "latest"
},
"dependencies": {
"@nuxt/kit": "^3.12.1",
"@varlet/ui": "3.3.0",
"@varlet/unplugin-icon-builder": "^0.2.28",
"knitwork": "^1.1.0",
"magic-string": "^0.30.10",
"unplugin": "^1.10.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/module-builder": "^0.7.1",
"@nuxt/schema": "^3.12.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.14.2",
"changelogen": "^0.5.5",
"eslint": "^9.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.6",
"nuxt": "^3.12.1",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}