@arbocollab/arbo-web-target 0.0.1 → 0.0.2-alpha.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.
Binary file
Binary file
Binary file
Binary file
package/favicon.ico ADDED
Binary file
package/npmjs.npmrc ADDED
@@ -0,0 +1,3 @@
1
+ legacy-peer-deps=true
2
+ //registry.npmjs.org/:_authToken=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
3
+ @arbocollab:registry=https://registry.npmjs.org
package/package.json CHANGED
@@ -1 +1,32 @@
1
- {"name": "@arbocollab/arbo-web-target","version": "0.0.1"}
1
+ {
2
+ "name": "@arbocollab/arbo-web-target",
3
+ "version": "0.0.2-alpha.0",
4
+ "sideEffects": [
5
+ "**/*.css"
6
+ ],
7
+ "scripts": {
8
+ "serve": "vite --port 8081 --open",
9
+ "dev": "vite --port 8084",
10
+ "config:fetch": "node scripts/fetch-build-config.mjs",
11
+ "build": "vite build",
12
+ "test": "echo 'hello'",
13
+ "build:module": "node scripts/fetch-build-config.mjs && vite build --config vite.config.module.ts && cp package.json app-module/ && cp README.md app-module/ && cp npmjs.npmrc app-module/ && cp .npmignore app-module/ && node scripts/clean-package-json.js app-module",
14
+ "publish:lib": "cd lib && npm publish --userconfig=npmjs.npmrc --access public --tag ${TAG:-beta}",
15
+ "publish:module": "cd app-module && npm publish --userconfig=npmjs.npmrc --access public --tag ${TAG:-beta}",
16
+ "preview": "vite build && vite preview",
17
+ "preview-https": "serve dist",
18
+ "start": "pnpm dev & wait-on tcp:8084 -v",
19
+ "lint": "eslint ./src",
20
+ "test:unit": "vitest --run --reporter verbose",
21
+ "test:coverage": "vitest run --coverage",
22
+ "test:ui": "vitest --ui"
23
+ },
24
+ "scriptsComments": {
25
+ "serve": "force use port 8081 to reuse cookies with arbo-web-client"
26
+ },
27
+ "peerDependencies": {
28
+ "@arbocollab/ag-grid-ui-components": "^0.0.43",
29
+ "@arbocollab/arbo-calendar-component": "0.0.32",
30
+ "@arbocollab/arbo-common-utils": "0.0.12-alpha.0"
31
+ }
32
+ }