-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.58 KB
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
{
"name": "minecraft-skin-viewer",
"version": "0.0.24",
"description": "A Minecraft Skin Viewer with some extra features",
"type": "module",
"author": "james090500",
"repository": {
"type": "git",
"url": "git+https://github.com/minecraftcapes/minecraft-skin-viewer.git"
},
"files": [
"dist",
"index.d.ts"
],
"module": "./dist/minecraft-skin-viewer.js",
"main": "./dist/minecraft-skin-viewer.cjs",
"typings": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/minecraft-skin-viewer.js",
"require": "./dist/minecraft-skin-viewer.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:preview": "vite --config vite-preview.config.js build",
"format": "npm run lint && npm run prettier",
"lint": "eslint ./src ./dev --fix",
"prettier": "prettier ./src ./dev --write",
"bump": "ncu -u && npm update && npm i && npm ci"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.51.0",
"@eslint/js": "^10.0.1",
"@vitejs/plugin-vue": "^6.0.8",
"axios": "^1.19.0",
"bootstrap": "^5.3.8",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.9.0",
"npm-check-updates": "^23.0.1",
"prettier": "^3.9.6",
"vite": "^8.2.0",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.5.41"
},
"dependencies": {
"three": "^0.185.1"
},
"allowScripts": {
"sharp@0.34.5": true,
"esbuild@0.28.1": true,
"workerd@1.20260801.1": true
}
}