-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.25 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
{
"name": "@storipress/vue-advertising",
"version": "1.1.0",
"repository": "git@github.com:storipress/vue-advertising.git",
"license": "MIT",
"bugs": {
"url": "https://github.com/storipress/vue-advertising/issues"
},
"workspaces": [
".",
"playground"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"import": "./dist/nuxt.mjs"
}
},
"scripts": {
"build": "unbuild",
"test": "vitest",
"prepack": "yarn build"
},
"files": [
"dist/**/*",
"!dist/**/*.test.d.ts",
"!dist/**/*.test.mjs",
"!dist/**/__snapshots__/**"
],
"dependencies": {
"@guanghechen/fast-deep-equal": "^2.3.7",
"@nuxt/kit": "^3.3.2",
"@vueuse/core": "^10.0.0",
"vue3-lazy-hydration": "^1.2.1"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"packageManager": "yarn@4.1.0",
"devDependencies": {
"@unhead/vue": "1.11.11",
"happy-dom": "13.10.1",
"sass": "1.81.0",
"typescript": "5.6.3",
"unbuild": "2.0.0",
"vite": "5.4.11",
"vitest": "1.6.0",
"vue": "3.5.12"
}
}