@tastic/hud 0.1.4 → 0.1.6
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/package.json +16 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tastic/hud",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Visual component kit for local-multiplayer React Native games: inline (non-modal) popovers, dropdowns, color pickers, gauges, ready buttons, and dialogs, built to stay scoped to one player's own zone on a shared screen",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
|
@@ -46,37 +46,37 @@
|
|
|
46
46
|
"!src/__mocks__"
|
|
47
47
|
],
|
|
48
48
|
"scripts": {
|
|
49
|
-
"build": "tsup
|
|
50
|
-
"build:watch": "tsup
|
|
49
|
+
"build": "tsup",
|
|
50
|
+
"build:watch": "tsup --watch",
|
|
51
51
|
"fix": "eslint --fix",
|
|
52
52
|
"lint": "eslint",
|
|
53
53
|
"prepublishOnly": "npm run build",
|
|
54
54
|
"release": "git push --follow-tags",
|
|
55
|
-
"release:major": "npm version major &&
|
|
56
|
-
"release:minor": "npm version minor &&
|
|
57
|
-
"release:patch": "npm version patch &&
|
|
55
|
+
"release:major": "npm version major && npm run release",
|
|
56
|
+
"release:minor": "npm version minor && npm run release",
|
|
57
|
+
"release:patch": "npm version patch && npm run release",
|
|
58
58
|
"test": "jest",
|
|
59
59
|
"test:watch": "jest --watchAll",
|
|
60
60
|
"typecheck": "tsc --noEmit",
|
|
61
|
-
"
|
|
61
|
+
"verify": "npm run lint && npm test && npm run typecheck && npm run build",
|
|
62
|
+
"preversion": "npm run verify"
|
|
62
63
|
},
|
|
64
|
+
"prettier": "@infinitetoken/eslint-config/prettier",
|
|
63
65
|
"devDependencies": {
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
+
"@infinitetoken/eslint-config": "^0.1.8",
|
|
67
|
+
"@infinitetoken/jest-config": "^0.2.0",
|
|
68
|
+
"@infinitetoken/tsconfig": "^0.3.0",
|
|
69
|
+
"@rific/auto-paper": "^0.10.3",
|
|
70
|
+
"@rific/feedback-press": "^0.10.8",
|
|
66
71
|
"@shopify/react-native-skia": "^2.6.2",
|
|
67
|
-
"@tastic/core": "^0.1.
|
|
72
|
+
"@tastic/core": "^0.1.5",
|
|
68
73
|
"@testing-library/dom": "^10.4.1",
|
|
69
74
|
"@testing-library/react": "^16.3.2",
|
|
70
75
|
"@types/jest": "^30.0.0",
|
|
71
76
|
"@types/react": "^19.0.0",
|
|
72
|
-
"@typescript-eslint/parser": "^8.59.3",
|
|
73
77
|
"eslint": "^9.39.4",
|
|
74
|
-
"eslint-config-prettier": "^10.1.8",
|
|
75
|
-
"eslint-plugin-package-json": "^1.0.0",
|
|
76
|
-
"eslint-plugin-prettier": "^5.5.5",
|
|
77
78
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
78
79
|
"eslint-plugin-react-native": "^5.0.0",
|
|
79
|
-
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
80
80
|
"jest": "^30.4.2",
|
|
81
81
|
"jest-environment-jsdom": "^30.4.1",
|
|
82
82
|
"prettier": "^3.8.3",
|
|
@@ -85,10 +85,8 @@
|
|
|
85
85
|
"react-native": "^0.85.3",
|
|
86
86
|
"react-native-paper": "^5.15.2",
|
|
87
87
|
"react-native-reanimated": "^4.5.1",
|
|
88
|
-
"ts-jest": "^29.4.9",
|
|
89
88
|
"tsup": "^8.0.0",
|
|
90
|
-
"typescript": "^6.0.3"
|
|
91
|
-
"typescript-eslint": "^8.59.3"
|
|
89
|
+
"typescript": "^6.0.3"
|
|
92
90
|
},
|
|
93
91
|
"peerDependencies": {
|
|
94
92
|
"@rific/auto-paper": ">=0.9.0",
|