@operato/scene-wellstek-gantt 7.3.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/CHANGELOG.md +11 -0
- package/README.md +13 -0
- package/assets/favicon.ico +0 -0
- package/assets/images/spinner.png +0 -0
- package/assets/javascript/wellstek-gantt.js +19740 -0
- package/db.sqlite +0 -0
- package/dist/data.d.ts +149 -0
- package/dist/data.js +1899 -0
- package/dist/data.js.map +1 -0
- package/dist/editors/index.d.ts +6 -0
- package/dist/editors/index.js +8 -0
- package/dist/editors/index.js.map +1 -0
- package/dist/gantt.d.ts +20 -0
- package/dist/gantt.js +227 -0
- package/dist/gantt.js.map +1 -0
- package/dist/groups/index.d.ts +0 -0
- package/dist/groups/index.js +2 -0
- package/dist/groups/index.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/templates/gantt.d.ts +14 -0
- package/dist/templates/gantt.js +16 -0
- package/dist/templates/gantt.js.map +1 -0
- package/dist/templates/index.d.ts +14 -0
- package/dist/templates/index.js +3 -0
- package/dist/templates/index.js.map +1 -0
- package/dist/templates/wellstek-gantt.d.ts +14 -0
- package/dist/templates/wellstek-gantt.js +16 -0
- package/dist/templates/wellstek-gantt.js.map +1 -0
- package/dist/wellstek-gantt.d.ts +11 -0
- package/dist/wellstek-gantt.js +134 -0
- package/dist/wellstek-gantt.js.map +1 -0
- package/icons/wellstek-gantt.png +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +15 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +15 -0
- package/logs/application-2024-08-10-13.log +306 -0
- package/logs/connections-2024-08-10-13.log +50 -0
- package/package.json +61 -0
- package/schema.graphql +4213 -0
- package/src/index.ts +1 -0
- package/src/templates/index.ts +3 -0
- package/src/templates/wellstek-gantt.ts +16 -0
- package/src/wellstek-gantt.ts +151 -0
- package/things-scene.config.js +5 -0
- package/translations/en.json +4 -0
- package/translations/ja.json +4 -0
- package/translations/ko.json +4 -0
- package/translations/ms.json +4 -0
- package/translations/zh.json +4 -0
- package/tsconfig.json +23 -0
- package/tsconfig.tsbuildinfo +1 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@operato/scene-wellstek-gantt",
|
|
3
|
+
"description": "Operato Scene Component for Gantt Chart made by Wellstek",
|
|
4
|
+
"version": "7.3.0",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"things-scene": true,
|
|
7
|
+
"author": "heartyoh",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public",
|
|
12
|
+
"@oprato:registry": "https://registry.npmjs.org"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/things-scene/operato-scene.git",
|
|
17
|
+
"directory": "packages/scene-wellstek-gantt"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"serve": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"things-factory-dev\"",
|
|
21
|
+
"serve:dev": "npm run serve",
|
|
22
|
+
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
23
|
+
"build": "tsc",
|
|
24
|
+
"prepublish": "tsc",
|
|
25
|
+
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
|
|
26
|
+
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
|
|
27
|
+
"migration": "things-factory-migration"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@hatiolab/things-scene": "^3.2.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@hatiolab/prettier-config": "^1.0.0",
|
|
34
|
+
"@things-factory/builder": "^7.0.0",
|
|
35
|
+
"@things-factory/operato-board": "^7.0.0",
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
37
|
+
"@typescript-eslint/parser": "^4.33.0",
|
|
38
|
+
"@web/dev-server": "^0.1.28",
|
|
39
|
+
"concurrently": "^8.0.1",
|
|
40
|
+
"eslint": "^8.39.0",
|
|
41
|
+
"eslint-config-prettier": "^8.3.0",
|
|
42
|
+
"husky": "^8.0.3",
|
|
43
|
+
"lint-staged": "^13.2.2",
|
|
44
|
+
"prettier": "^2.4.1",
|
|
45
|
+
"tslib": "^2.3.1",
|
|
46
|
+
"typescript": "^5.0.4"
|
|
47
|
+
},
|
|
48
|
+
"prettier": "@hatiolab/prettier-config",
|
|
49
|
+
"husky": {
|
|
50
|
+
"hooks": {
|
|
51
|
+
"pre-commit": "lint-staged"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"lint-staged": {
|
|
55
|
+
"*.ts": [
|
|
56
|
+
"eslint --fix",
|
|
57
|
+
"prettier --write"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"gitHead": "9f8940dc88139cba169be139d32617410d155908"
|
|
61
|
+
}
|