@lincle/react-web-base 0.0.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.
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@lincle/react-web-base",
3
+ "title": "lincle react web base",
4
+ "license": "LGPL-3.0-or-later",
5
+ "version": "0.0.1",
6
+ "description": "A 'reactive' React node and edge generator",
7
+ "author": "wallzero @wallzeroblog (http://wallzero.com)",
8
+ "contributors": [
9
+ {
10
+ "name": "Connor Schlesiger",
11
+ "email": "connor@schlesiger.ca",
12
+ "position": "Initial and Lead Developer"
13
+ }
14
+ ],
15
+ "main": "dist/index.js",
16
+ "types": "dist/index.d.ts",
17
+ "files": [
18
+ "dist/",
19
+ "COPYING.md",
20
+ "COPYING.LESSER.md"
21
+ ],
22
+ "homepage": "https://gitlab.com/lincle/lincle/tree/master/packages/react-web-base/",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://gitlab.com/lincle/lincle.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://gitlab.com/lincle/lincle/issues"
29
+ },
30
+ "scripts": {
31
+ "build": "run-s clean:dist build:prod build:styles",
32
+ "build:prod": "tsc -p ./tsconfig.json",
33
+ "build:watch": "run-s clean:dist build:prod build:styles build:watch:tsc",
34
+ "build:watch:tsc": "tsc -p ./tsconfig.json --watch --pretty --preserveWatchOutput",
35
+ "build:styles": "ncp src/styles.g.css dist/styles.g.css",
36
+ "----------------------------------------------------------------": "",
37
+ "build:prod:config": "",
38
+ "---------------------------------------------------------------": "",
39
+ "lint": "run-p lint:es",
40
+ "lint:es": "eslint --resolve-plugins-relative-to . 'src/**/*.[jt]s?(x)' --ignore-pattern 'src/**/*.(d.ts|json)'",
41
+ "clean": "run-s clean:dist clean:node_modules",
42
+ "clean:node_modules": "rimraf node_modules yarn.lock package-lock.json",
43
+ "clean:dist": "rimraf dist"
44
+ },
45
+ "devDependencies": {
46
+ "@digest/eslint-config-jest": "^4.2.5",
47
+ "@digest/eslint-config-react": "^4.2.5",
48
+ "@digest/eslint-config-typescript": "^4.2.5",
49
+ "@digest/jest-junit": "^4.2.5",
50
+ "@digest/jest-react": "^4.2.5",
51
+ "@digest/jest-typescript": "^4.2.5",
52
+ "@digest/typescript": "^4.2.5",
53
+ "@types/bezier-js": "^4.1.0",
54
+ "@types/jest": "^29.5.4",
55
+ "@types/lodash.throttle": "^4.1.6",
56
+ "@types/lodash.debounce": "^4.0.6",
57
+ "@types/node": "^20.5.9",
58
+ "@types/react": "^18.2.21",
59
+ "@types/react-dom": "^18.2.7",
60
+ "@types/react-test-renderer": "^18.0.1",
61
+ "cross-env": "^7.0.3",
62
+ "jest-environment-jsdom": "^29.6.2",
63
+ "jest-environment-jsdom-global": "^4.0.0",
64
+ "ncp": "^2.0.0",
65
+ "npm-run-all": "^4.1.5",
66
+ "react": "^18.2.0",
67
+ "react-dom": "^18.2.0",
68
+ "react-test-renderer": "^18.2.0",
69
+ "rimraf": "^5.0.1"
70
+ },
71
+ "dependencies": {
72
+ "@lincle/react-shared": "^0.0.1",
73
+ "bezier-js": "^5.1.0",
74
+ "lodash.debounce": "^4.0.8",
75
+ "lodash.throttle": "^4.1.1"
76
+ },
77
+ "peerDependencies": {
78
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
79
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
80
+ },
81
+ "keywords": [
82
+ "library",
83
+ "lincle",
84
+ "typescript",
85
+ "react",
86
+ "reactjs",
87
+ "react-dom",
88
+ "react-web",
89
+ "reactive",
90
+ "graph",
91
+ "diagram",
92
+ "dag",
93
+ "acyclical graph",
94
+ "cyclical graph"
95
+ ]
96
+ }