-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.08 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
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
86
87
88
89
90
91
92
93
94
{
"name": "@bafv4/mcitems",
"version": "2.1.1",
"description": "Minecraft item data, textures, and translations for React/Vue applications (multi-version support)",
"type": "module",
"main": "./dist/1.16/index.cjs",
"module": "./dist/1.16/index.js",
"types": "./dist/1.16/index.d.ts",
"exports": {
"./1.16": {
"import": {
"types": "./dist/1.16/index.d.ts",
"default": "./dist/1.16/index.js"
},
"require": {
"types": "./dist/1.16/index.d.cts",
"default": "./dist/1.16/index.cjs"
}
},
"./1.16/react": {
"import": {
"types": "./dist/1.16/react.d.ts",
"default": "./dist/1.16/react.js"
},
"require": {
"types": "./dist/1.16/react.d.cts",
"default": "./dist/1.16/react.cjs"
}
},
"./1.16/vue": {
"import": {
"types": "./dist/1.16/vue.d.ts",
"default": "./dist/1.16/vue.js"
},
"require": {
"types": "./dist/1.16/vue.d.cts",
"default": "./dist/1.16/vue.cjs"
}
},
"./1.16/lang/*": "./dist/1.16/lang/*.json",
"./textures/*": "./dist/textures/*"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"gen-lang": "node scripts/gen-lang.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"minecraft",
"items",
"textures",
"react",
"vue",
"1.16",
"multi-version"
],
"author": "bafv4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bafv4/mcitems.git"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vue": "^3.4.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0"
}
}