-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 2.13 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
{
"name": "ipad-cursor",
"version": "0.5.2",
"description": "Mouse effect of iPad in browser that can be used in any framework",
"scripts": {
"dev": "cd ./playground && vite",
"build": "node ./.build.mjs",
"build:playground": "cd ./playground && vite-ssg build -c ./vite.config.ts",
"publish": "node ./.build.mjs --publish",
"build:react-ts": "cd ./src/react && tsc"
},
"type": "module",
"main": "index.mjs",
"module": "index.mjs",
"types": "index.d.ts",
"exports": {
"./vue": {
"import": "./vue/index.mjs",
"types": "./vue/index.d.ts",
"default": "./vue/index.mjs"
},
"./react": {
"import": "./react/index.mjs",
"types": "./react/index.d.ts",
"default": "./react/index.mjs"
},
".": {
"import": "./index.mjs",
"types": "./index.d.ts",
"default": "./index.mjs"
}
},
"keywords": [
"iPad Cursor",
"Mouse Effect",
"Vue",
"iPad",
"Mouse",
"Cursor"
],
"author": "CatsJuice<https://github.com/CatsJuice>",
"repository": "https://github.com/catsjuice/ipad-cursor/",
"license": "MIT",
"devDependencies": {
"@formkit/auto-animate": "^0.7.0",
"@highlightjs/vue-plugin": "^2.1.0",
"@iconify-json/carbon": "^1.1.18",
"@iconify-json/logos": "^1.1.33",
"@iconify-json/vscode-icons": "^1.1.25",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/highlight.js": "^10.1.0",
"@types/node": "^20.3.3",
"@types/react": "^18.2.14",
"@unhead/vue": "^1.1.30",
"@vitejs/plugin-vue": "^4.1.0",
"@vueuse/core": "^10.2.1",
"brotli-size": "^4.0.0",
"bumpp": "^9.1.1",
"chalk": "^5.3.0",
"execa": "^7.1.1",
"highlight.js": "^11.8.0",
"highlightjs-vue": "^1.0.0",
"pretty-bytes": "^6.1.0",
"prompts": "^2.4.2",
"react": "^18.2.0",
"shx": "^0.3.4",
"taze": "^0.11.2",
"tslib": "^2.6.0",
"typescript": "^5.0.2",
"unocss": "^0.53.4",
"url": "^0.11.1",
"vite": "^4.3.9",
"vite-ssg": "^0.23.0",
"vue": "^3.2.47",
"vue-highlight.js": "^3.1.0",
"vue-router": "^4.2.3",
"vue-tsc": "^1.4.2"
}
}