@arcanewizards/sigil 0.1.0 → 0.1.1

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 (1) hide show
  1. package/package.json +20 -15
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@arcanewizards/sigil",
3
3
  "description": "Application framework for A/V applications, built on-top of arcanejs",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "private": false,
6
6
  "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/ArcaneWizards/open-source.git",
10
+ "directory": "packages/sigil"
11
+ },
7
12
  "exports": {
8
13
  ".": {
9
14
  "@arcanewizards/source": "./src/index.ts",
@@ -85,30 +90,20 @@
85
90
  "files": [
86
91
  "dist"
87
92
  ],
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
93
  "dependencies": {
97
94
  "@arcanejs/diff": "^0.5.2",
98
95
  "@arcanejs/protocol": "^0.8.0",
99
96
  "@arcanejs/react-toolkit": "^0.15.1",
100
97
  "@arcanejs/toolkit": "^8.0.0",
101
98
  "@arcanejs/toolkit-frontend": "^0.11.0",
102
- "@arcanewizards/net-utils": "workspace:^",
103
99
  "lodash": "^4.17.21",
104
100
  "pino": "^9.5.0",
105
101
  "radix-ui": "^1.4.3",
106
102
  "react": "^19.2.0",
107
- "zod": "^3.22.4"
103
+ "zod": "^3.22.4",
104
+ "@arcanewizards/net-utils": "^0.1.1"
108
105
  },
109
106
  "devDependencies": {
110
- "@arcanewizards/eslint-config": "workspace:^",
111
- "@arcanewizards/typescript-config": "workspace:^",
112
107
  "@tailwindcss/cli": "^4.1.13",
113
108
  "@types/lodash": "^4.17.13",
114
109
  "@types/node": "^25.0.3",
@@ -118,6 +113,16 @@
118
113
  "eslint-plugin-better-tailwindcss": "^4.2.0",
119
114
  "tailwindcss": "^4.1.13",
120
115
  "tsup": "^8.1.0",
121
- "typescript": "^5.7.3"
116
+ "typescript": "^5.7.3",
117
+ "@arcanewizards/eslint-config": "^0.0.0",
118
+ "@arcanewizards/typescript-config": "^0.0.0"
119
+ },
120
+ "scripts": {
121
+ "build": "rm -rf dist && tsup && pnpm build:styles && check-export-map",
122
+ "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",
123
+ "check:types": "tsc --noEmit",
124
+ "format:fix": "cd .. && pnpm format:fix",
125
+ "lint": "eslint . --max-warnings 0",
126
+ "lint:fix": "eslint --fix ."
122
127
  }
123
- }
128
+ }