@nice2dev/icons-gaming 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/README.md +19 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +486 -0
- package/dist/index.mjs +1862 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nice2dev/icons-gaming",
|
|
3
|
+
"version": "1.0.10",
|
|
4
|
+
"description": "Animated gaming icons for prototyping – characters with state animations, items, weapons, and UI elements (hearts, bars, cooldowns)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "dist/index.cjs",
|
|
8
|
+
"module": "dist/index.mjs",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.mjs",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"CHANGELOG.md",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"build": "tsc -p tsconfig.build.json && vite build",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"test": "vitest run --config vitest.config.ts",
|
|
28
|
+
"test:watch": "vitest --config vitest.config.ts",
|
|
29
|
+
"test:coverage": "vitest run --config vitest.config.ts --coverage",
|
|
30
|
+
"clean": "rimraf dist",
|
|
31
|
+
"prepublishOnly": "npm run build"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"react",
|
|
35
|
+
"icons",
|
|
36
|
+
"gaming",
|
|
37
|
+
"animated",
|
|
38
|
+
"sprites",
|
|
39
|
+
"prototyping",
|
|
40
|
+
"characters",
|
|
41
|
+
"rpg",
|
|
42
|
+
"pixel",
|
|
43
|
+
"hearts",
|
|
44
|
+
"health-bar",
|
|
45
|
+
"nicetodev"
|
|
46
|
+
],
|
|
47
|
+
"author": "NiceToDev <contact@nicetodev.com>",
|
|
48
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/NiceToDev/NiceToDev.UI.git",
|
|
52
|
+
"directory": "packages/icons-gaming"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/NiceToDev/NiceToDev.UI#readme",
|
|
55
|
+
"bugs": {
|
|
56
|
+
"url": "https://github.com/NiceToDev/NiceToDev.UI/issues"
|
|
57
|
+
},
|
|
58
|
+
"peerDependencies": {
|
|
59
|
+
"react": ">=17.0.0",
|
|
60
|
+
"react-dom": ">=17.0.0"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
64
|
+
"@testing-library/react": "^14.0.0",
|
|
65
|
+
"@types/react": "^18.2.0",
|
|
66
|
+
"@types/react-dom": "^18.2.0",
|
|
67
|
+
"@vitejs/plugin-react": "^4.2.0",
|
|
68
|
+
"react": "^18.2.0",
|
|
69
|
+
"react-dom": "^18.2.0",
|
|
70
|
+
"typescript": "^5.3.0",
|
|
71
|
+
"vite": "^6.2.0",
|
|
72
|
+
"vite-plugin-dts": "^4.5.0",
|
|
73
|
+
"vitest": "^4.1.0"
|
|
74
|
+
}
|
|
75
|
+
}
|