@inditextech/weave-sdk 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.
package/dist/sdk.js.gz ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@inditextech/weave-sdk",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "license": "Apache-2.0",
6
+ "author": "Jesus Manuel Piñeiro Cid <jesusmpc@inditex.com>",
7
+ "homepage": "https://inditextech.github.io/weavejs",
8
+ "repository": "github:InditexTech/weavejs",
9
+ "maintainers": [
10
+ {
11
+ "name": "Jesus Manuel Piñeiro Cid",
12
+ "email": "jesusmpc@inditex.com"
13
+ }
14
+ ],
15
+ "exports": {
16
+ "import": "./dist/sdk.js",
17
+ "require": "./dist/sdk.cjs"
18
+ },
19
+ "types": "dist/sdk.d.ts",
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "scripts": {
24
+ "build:snapshot": "vite build --mode=development --sourcemap --emptyOutDir",
25
+ "build": "vite build --mode=production --minify --emptyOutDir",
26
+ "bump:snapshot": "npm version $npm_package_version.$(date \"+%s\")",
27
+ "bundle:analyze": "vite-bundle-visualizer",
28
+ "check": "echo \"Monorepo test script\" && exit 0",
29
+ "dev": "vite build --watch",
30
+ "dev:test": "vitest --passWithNoTests --coverage",
31
+ "dist:tag": "npm dist-tag add \"$(jq -r .name package.json)@$(jq -r .version package.json)\" \"$PR_TAG\" --registry=\"$NPM_PUBLISHING_REGISTRY\" --verbose",
32
+ "format": "npm run lint -- --quiet --fix --fix-type layout",
33
+ "link": "npm link",
34
+ "lint:fix": "npm run lint -- --fix",
35
+ "lint": "eslint ./src",
36
+ "publish:snapshot": "npm publish",
37
+ "release:perform": "npm publish --access public",
38
+ "release:prepare": "npm run verify",
39
+ "test": "vitest --passWithNoTests --coverage --watch=false",
40
+ "types:check": "tsc --noEmit",
41
+ "verify": "npm run lint && npm run test && npm run build",
42
+ "version:development": "npm version $(npm version minor)-SNAPSHOT",
43
+ "version:release": "npm version $RELEASE_VERSION -m \"[npm-scripts] prepare release $RELEASE_VERSION\" --tag-version-prefix \"\""
44
+ },
45
+ "devDependencies": {
46
+ "@inditextech/weave-types": "0.1.0",
47
+ "@types/fontfaceobserver": "2.1.3",
48
+ "@types/lodash": "4.17.15",
49
+ "@types/react-reconciler": "0.28.9",
50
+ "@typescript-eslint/eslint-plugin": "8.26.0",
51
+ "@typescript-eslint/parser": "8.26.0",
52
+ "@vitest/coverage-v8": "1.6.0",
53
+ "@vitest/ui": "1.6.0",
54
+ "emittery": "1.1.0",
55
+ "eslint": "8.57.1",
56
+ "eslint-config-eslint": "11.0.0",
57
+ "fontfaceobserver": "2.3.0",
58
+ "globals": "15.14.0",
59
+ "lodash": "4.17.21",
60
+ "pino": "^9.6.0",
61
+ "pino-pretty": "^13.0.0",
62
+ "react-reconciler": "~0.28.0",
63
+ "typescript-eslint": "8.22.0",
64
+ "uuid": "11.0.5",
65
+ "vite": "5.2.9",
66
+ "vite-bundle-visualizer": "1.1.0",
67
+ "vite-plugin-compression2": "1.0.0",
68
+ "vite-plugin-dts": "4.0.3",
69
+ "vitest": "1.6.0",
70
+ "vitest-sonar-reporter": "2.0.0",
71
+ "yjs-types": "0.0.1"
72
+ },
73
+ "peerDependencies": {
74
+ "@syncedstore/core": ">= 0.6.0",
75
+ "@types/react": ">= 18.3.1 && < 19",
76
+ "konva": ">= 9.3.18",
77
+ "react": ">= 18.2.0 && < 19",
78
+ "yjs": ">= 13.5.13"
79
+ },
80
+ "engines": {
81
+ "node": "^18.12 || ^20.11 || ^22.11",
82
+ "npm": ">= 8.19.x"
83
+ },
84
+ "nx": {
85
+ "implicitDependencies": [
86
+ "@inditextech/weave-types"
87
+ ]
88
+ }
89
+ }