@arcanewizards/sigil 0.1.0

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.
Files changed (66) hide show
  1. package/dist/chunk-4PMRDURG.js +66 -0
  2. package/dist/chunk-5DRI7C4U.cjs +66 -0
  3. package/dist/chunk-A5LYYZER.cjs +103 -0
  4. package/dist/chunk-BIY5HAXP.js +125 -0
  5. package/dist/chunk-CAYKPJIX.cjs +10 -0
  6. package/dist/chunk-EJNNLQ2S.js +72 -0
  7. package/dist/chunk-FHXT3DAL.js +103 -0
  8. package/dist/chunk-H4U4Z4GM.js +66 -0
  9. package/dist/chunk-LSHKAVON.js +10 -0
  10. package/dist/chunk-MXDDIFIO.cjs +767 -0
  11. package/dist/chunk-PEARNJ5G.cjs +125 -0
  12. package/dist/chunk-RI33QVOD.cjs +66 -0
  13. package/dist/chunk-VZ4A6RRT.cjs +72 -0
  14. package/dist/chunk-XAK7WC3D.js +767 -0
  15. package/dist/frontend/appearance.cjs +88 -0
  16. package/dist/frontend/appearance.d.cts +11 -0
  17. package/dist/frontend/appearance.d.ts +11 -0
  18. package/dist/frontend/appearance.js +88 -0
  19. package/dist/frontend/context.cjs +16 -0
  20. package/dist/frontend/context.d.cts +32 -0
  21. package/dist/frontend/context.d.ts +32 -0
  22. package/dist/frontend/context.js +16 -0
  23. package/dist/frontend/controls/index.cjs +49 -0
  24. package/dist/frontend/controls/index.d.cts +168 -0
  25. package/dist/frontend/controls/index.d.ts +168 -0
  26. package/dist/frontend/controls/index.js +49 -0
  27. package/dist/frontend/dialogs.cjs +17 -0
  28. package/dist/frontend/dialogs.d.cts +36 -0
  29. package/dist/frontend/dialogs.d.ts +36 -0
  30. package/dist/frontend/dialogs.js +17 -0
  31. package/dist/frontend/input.cjs +8 -0
  32. package/dist/frontend/input.d.cts +33 -0
  33. package/dist/frontend/input.d.ts +33 -0
  34. package/dist/frontend/input.js +8 -0
  35. package/dist/frontend/preferences.cjs +54 -0
  36. package/dist/frontend/preferences.d.cts +14 -0
  37. package/dist/frontend/preferences.d.ts +14 -0
  38. package/dist/frontend/preferences.js +54 -0
  39. package/dist/frontend/styles/base.css +321 -0
  40. package/dist/frontend/styles/sigil.css +785 -0
  41. package/dist/frontend/styles/theme.css +625 -0
  42. package/dist/frontend/styling.cjs +18 -0
  43. package/dist/frontend/styling.d.cts +32 -0
  44. package/dist/frontend/styling.d.ts +32 -0
  45. package/dist/frontend/styling.js +18 -0
  46. package/dist/frontend/toolbars.cjs +18 -0
  47. package/dist/frontend/toolbars.d.cts +11 -0
  48. package/dist/frontend/toolbars.d.ts +11 -0
  49. package/dist/frontend/toolbars.js +18 -0
  50. package/dist/frontend/tooltip.cjs +10 -0
  51. package/dist/frontend/tooltip.d.cts +16 -0
  52. package/dist/frontend/tooltip.d.ts +16 -0
  53. package/dist/frontend/tooltip.js +10 -0
  54. package/dist/frontend.cjs +359 -0
  55. package/dist/frontend.d.cts +90 -0
  56. package/dist/frontend.d.ts +90 -0
  57. package/dist/frontend.js +359 -0
  58. package/dist/index.cjs +492 -0
  59. package/dist/index.d.cts +134 -0
  60. package/dist/index.d.ts +134 -0
  61. package/dist/index.js +492 -0
  62. package/dist/proto-B-WcMUOE.d.cts +33 -0
  63. package/dist/proto-kGDF-yWB.d.ts +33 -0
  64. package/dist/types-X8O95zmC.d.cts +23 -0
  65. package/dist/types-X8O95zmC.d.ts +23 -0
  66. package/package.json +123 -0
@@ -0,0 +1,23 @@
1
+ import { JSONValue } from '@arcanejs/diff';
2
+
3
+ type AppRootLogEntryStackFrame = {
4
+ message: string;
5
+ stack: string | null;
6
+ cause: AppRootLogEntryStackFrame | null;
7
+ } & Record<string, JSONValue>;
8
+ type AppRootLogEntry = {
9
+ index: number;
10
+ timestamp: number;
11
+ level: 'debug' | 'info' | 'warn' | 'error';
12
+ message: string;
13
+ stack?: AppRootLogEntryStackFrame;
14
+ };
15
+ type SystemInformation = {
16
+ os: string;
17
+ version: string;
18
+ appPath: string;
19
+ cwd: string;
20
+ dataDirectory: string;
21
+ };
22
+
23
+ export type { AppRootLogEntry as A, SystemInformation as S, AppRootLogEntryStackFrame as a };
@@ -0,0 +1,23 @@
1
+ import { JSONValue } from '@arcanejs/diff';
2
+
3
+ type AppRootLogEntryStackFrame = {
4
+ message: string;
5
+ stack: string | null;
6
+ cause: AppRootLogEntryStackFrame | null;
7
+ } & Record<string, JSONValue>;
8
+ type AppRootLogEntry = {
9
+ index: number;
10
+ timestamp: number;
11
+ level: 'debug' | 'info' | 'warn' | 'error';
12
+ message: string;
13
+ stack?: AppRootLogEntryStackFrame;
14
+ };
15
+ type SystemInformation = {
16
+ os: string;
17
+ version: string;
18
+ appPath: string;
19
+ cwd: string;
20
+ dataDirectory: string;
21
+ };
22
+
23
+ export type { AppRootLogEntry as A, SystemInformation as S, AppRootLogEntryStackFrame as a };
package/package.json ADDED
@@ -0,0 +1,123 @@
1
+ {
2
+ "name": "@arcanewizards/sigil",
3
+ "description": "Application framework for A/V applications, built on-top of arcanejs",
4
+ "version": "0.1.0",
5
+ "private": false,
6
+ "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "@arcanewizards/source": "./src/index.ts",
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ },
14
+ "./frontend": {
15
+ "@arcanewizards/source": "./src/frontend.ts",
16
+ "types": "./dist/frontend.d.ts",
17
+ "import": "./dist/frontend.js",
18
+ "require": "./dist/frontend.cjs"
19
+ },
20
+ "./frontend/appearance": {
21
+ "@arcanewizards/source": "./src/frontend/appearance.tsx",
22
+ "types": "./dist/frontend/appearance.d.ts",
23
+ "import": "./dist/frontend/appearance.js",
24
+ "require": "./dist/frontend/appearance.cjs"
25
+ },
26
+ "./frontend/context": {
27
+ "@arcanewizards/source": "./src/frontend/context.tsx",
28
+ "types": "./dist/frontend/context.d.ts",
29
+ "import": "./dist/frontend/context.js",
30
+ "require": "./dist/frontend/context.cjs"
31
+ },
32
+ "./frontend/controls": {
33
+ "@arcanewizards/source": "./src/frontend/controls/index.ts",
34
+ "types": "./dist/frontend/controls/index.d.ts",
35
+ "import": "./dist/frontend/controls/index.js",
36
+ "require": "./dist/frontend/controls/index.cjs"
37
+ },
38
+ "./frontend/dialogs": {
39
+ "@arcanewizards/source": "./src/frontend/dialogs.tsx",
40
+ "types": "./dist/frontend/dialogs.d.ts",
41
+ "import": "./dist/frontend/dialogs.js",
42
+ "require": "./dist/frontend/dialogs.cjs"
43
+ },
44
+ "./frontend/input": {
45
+ "@arcanewizards/source": "./src/frontend/input.ts",
46
+ "types": "./dist/frontend/input.d.ts",
47
+ "import": "./dist/frontend/input.js",
48
+ "require": "./dist/frontend/input.cjs"
49
+ },
50
+ "./frontend/preferences": {
51
+ "@arcanewizards/source": "./src/frontend/preferences.ts",
52
+ "types": "./dist/frontend/preferences.d.ts",
53
+ "import": "./dist/frontend/preferences.js",
54
+ "require": "./dist/frontend/preferences.cjs"
55
+ },
56
+ "./frontend/styling": {
57
+ "@arcanewizards/source": "./src/frontend/styling.ts",
58
+ "types": "./dist/frontend/styling.d.ts",
59
+ "import": "./dist/frontend/styling.js",
60
+ "require": "./dist/frontend/styling.cjs"
61
+ },
62
+ "./frontend/toolbars": {
63
+ "@arcanewizards/source": "./src/frontend/toolbars.tsx",
64
+ "types": "./dist/frontend/toolbars.d.ts",
65
+ "import": "./dist/frontend/toolbars.js",
66
+ "require": "./dist/frontend/toolbars.cjs"
67
+ },
68
+ "./frontend/tooltip": {
69
+ "@arcanewizards/source": "./src/frontend/tooltip.tsx",
70
+ "types": "./dist/frontend/tooltip.d.ts",
71
+ "import": "./dist/frontend/tooltip.js",
72
+ "require": "./dist/frontend/tooltip.cjs"
73
+ },
74
+ "./frontend/styles/sigil.css": {
75
+ "default": "./dist/frontend/styles/sigil.css"
76
+ },
77
+ "./frontend/styles/theme.css": {
78
+ "default": "./dist/frontend/styles/theme.css"
79
+ },
80
+ "./frontend/styles/base.css": {
81
+ "default": "./dist/frontend/styles/base.css"
82
+ },
83
+ "./package.json": "./package.json"
84
+ },
85
+ "files": [
86
+ "dist"
87
+ ],
88
+ "scripts": {
89
+ "build": "rm -rf dist && tsup && pnpm build:styles && check-export-map",
90
+ "build:styles": "tailwindcss -i ./src/frontend/styles/sigil.css -o ./dist/frontend/styles/sigil.css && cp ./src/frontend/styles/theme.css ./dist/frontend/styles/theme.css && cp ./src/frontend/styles/base.css ./dist/frontend/styles/base.css",
91
+ "check:types": "tsc --noEmit",
92
+ "format:fix": "cd .. && pnpm format:fix",
93
+ "lint": "eslint . --max-warnings 0",
94
+ "lint:fix": "eslint --fix ."
95
+ },
96
+ "dependencies": {
97
+ "@arcanejs/diff": "^0.5.2",
98
+ "@arcanejs/protocol": "^0.8.0",
99
+ "@arcanejs/react-toolkit": "^0.15.1",
100
+ "@arcanejs/toolkit": "^8.0.0",
101
+ "@arcanejs/toolkit-frontend": "^0.11.0",
102
+ "@arcanewizards/net-utils": "workspace:^",
103
+ "lodash": "^4.17.21",
104
+ "pino": "^9.5.0",
105
+ "radix-ui": "^1.4.3",
106
+ "react": "^19.2.0",
107
+ "zod": "^3.22.4"
108
+ },
109
+ "devDependencies": {
110
+ "@arcanewizards/eslint-config": "workspace:^",
111
+ "@arcanewizards/typescript-config": "workspace:^",
112
+ "@tailwindcss/cli": "^4.1.13",
113
+ "@types/lodash": "^4.17.13",
114
+ "@types/node": "^25.0.3",
115
+ "@types/react": "^19.2.2",
116
+ "check-export-map": "^1.3.1",
117
+ "eslint": "^9",
118
+ "eslint-plugin-better-tailwindcss": "^4.2.0",
119
+ "tailwindcss": "^4.1.13",
120
+ "tsup": "^8.1.0",
121
+ "typescript": "^5.7.3"
122
+ }
123
+ }