@appconda/sdk 1.0.189
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/index.d.ts +14210 -0
- package/index.js +868 -0
- package/package.json +143 -0
package/package.json
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@appconda/sdk",
|
|
3
|
+
"version": "1.0.189",
|
|
4
|
+
"description": "",
|
|
5
|
+
"keywords": [],
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"module": "index.js",
|
|
8
|
+
"typings": "index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"index.d.ts"
|
|
12
|
+
],
|
|
13
|
+
"author": "tuvalframework <tuvalframework@gmail.com>",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": ""
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=6.0.0"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"bundle": "dts-bundle-generator --no-check --export-referenced-types=false -o ./dist/index.d.ts ./dist_types/types/index.d.ts",
|
|
24
|
+
"buildall": "node shell_all.js",
|
|
25
|
+
"buildwp": "node shell_wp.js",
|
|
26
|
+
"buildnode": "webpack --config webpack.node.config.js",
|
|
27
|
+
"buildweb": "webpack --config webpack.web.config.js",
|
|
28
|
+
"buildwebprod": "webpack --config webpack.web.prod.config.js",
|
|
29
|
+
"build": "node shell.js",
|
|
30
|
+
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
|
|
31
|
+
"prebuild": "rimraf dist",
|
|
32
|
+
"b": "tsc --module commonjs && rollup -c rollup.config.ts",
|
|
33
|
+
"_build": "webpack && tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
|
|
34
|
+
"wbuild": "webpack",
|
|
35
|
+
"wpbuild": "webpack --config webpack.wp.config.js",
|
|
36
|
+
"prodbuild": "webpack --config webpack.prod.config.js",
|
|
37
|
+
"rbuild": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
|
|
38
|
+
"web": "",
|
|
39
|
+
"_start": "rollup -c rollup.config.ts -w",
|
|
40
|
+
"start": "webpack-dev-server",
|
|
41
|
+
"test": "jest --coverage",
|
|
42
|
+
"test:watch": "jest --coverage --watch",
|
|
43
|
+
"test:prod": "npm run lint && npm run test -- --no-cache",
|
|
44
|
+
"deploy-docs": "ts-node tools/gh-pages-publish",
|
|
45
|
+
"report-coverage": "cat ./coverage/lcov.info | coveralls",
|
|
46
|
+
"commit": "git-cz",
|
|
47
|
+
"semantic-release": "semantic-release",
|
|
48
|
+
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
|
|
49
|
+
"precommit": "lint-staged",
|
|
50
|
+
"travis-deploy-once": "travis-deploy-once",
|
|
51
|
+
"uglify": "terser ./dist_web/tuval-core.js --compress --mangle --comments false --keep-classnames --keep-fnames --module -o ./dist_web/tuval-core.min.js",
|
|
52
|
+
"serve": "lite-server --baseDir=\"\"",
|
|
53
|
+
"asbuild:untouched": "asc assembly/index.ts -b assembly/dist/untouched.wasm -t assembly/dist/untouched.wat --validate --sourceMap --debug",
|
|
54
|
+
"asbuild:optimized": "asc assembly/index.ts -b assembly/dist/optimized.wasm -t assembly/dist/optimized.wat --validate --sourceMap --optimize",
|
|
55
|
+
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized"
|
|
56
|
+
},
|
|
57
|
+
"lint-staged": {
|
|
58
|
+
"{src,test}/**/*.ts": [
|
|
59
|
+
"prettier --write",
|
|
60
|
+
"git add"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"config": {
|
|
64
|
+
"commitizen": {
|
|
65
|
+
"path": "node_modules/cz-conventional-changelog"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"jest": {
|
|
69
|
+
"transform": {
|
|
70
|
+
".(ts|tsx)": "ts-jest"
|
|
71
|
+
},
|
|
72
|
+
"testEnvironment": "node",
|
|
73
|
+
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
74
|
+
"moduleFileExtensions": [
|
|
75
|
+
"ts",
|
|
76
|
+
"tsx",
|
|
77
|
+
"js"
|
|
78
|
+
],
|
|
79
|
+
"coveragePathIgnorePatterns": [
|
|
80
|
+
"/node_modules/",
|
|
81
|
+
"/test/"
|
|
82
|
+
],
|
|
83
|
+
"coverageThreshold": {
|
|
84
|
+
"global": {
|
|
85
|
+
"branches": 90,
|
|
86
|
+
"functions": 95,
|
|
87
|
+
"lines": 95,
|
|
88
|
+
"statements": 95
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"collectCoverageFrom": [
|
|
92
|
+
"src/*.{js,ts}"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
"prettier": {
|
|
96
|
+
"semi": false,
|
|
97
|
+
"singleQuote": true
|
|
98
|
+
},
|
|
99
|
+
"commitlint": {
|
|
100
|
+
"extends": [
|
|
101
|
+
"@commitlint/config-conventional"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"devDependencies": {
|
|
105
|
+
"@tuval/cg": "^0.0.16",
|
|
106
|
+
"@tuval/graphics": "^0.0.11",
|
|
107
|
+
"cross-fetch": "^4.0.0",
|
|
108
|
+
"declaration-bundler-webpack-plugin": "^1.0.3",
|
|
109
|
+
"dts-bundle": "^0.7.3",
|
|
110
|
+
"editorjs-text-color-plugin": "^2.0.4",
|
|
111
|
+
"ifdef-loader": "^2.3.0",
|
|
112
|
+
"isomorphic-form-data": "^2.0.0",
|
|
113
|
+
"react": "^18.2.0",
|
|
114
|
+
"rimraf": "^3.0.2",
|
|
115
|
+
"shelljs": "^0.8.4",
|
|
116
|
+
"ts-loader": "^9.2.4",
|
|
117
|
+
"typescript": "^5.4.5",
|
|
118
|
+
"webpack": "^5.47.0",
|
|
119
|
+
"webpack-bundle-analyzer": "^4.9.1",
|
|
120
|
+
"webpack-cli": "^4.7.2"
|
|
121
|
+
},
|
|
122
|
+
"dependencies": {
|
|
123
|
+
"@editorjs/image": "^2.8.1",
|
|
124
|
+
"@editorjs/inline-code": "^1.4.0",
|
|
125
|
+
"@editorjs/link": "^2.5.0",
|
|
126
|
+
"@editorjs/list": "^1.8.0",
|
|
127
|
+
"@editorjs/marker": "^1.3.0",
|
|
128
|
+
"@editorjs/paragraph": "^2.9.0",
|
|
129
|
+
"@editorjs/quote": "^2.5.0",
|
|
130
|
+
"@editorjs/raw": "^2.4.0",
|
|
131
|
+
"@editorjs/simple-image": "^1.5.1",
|
|
132
|
+
"@editorjs/table": "^2.2.2",
|
|
133
|
+
"@editorjs/warning": "^1.3.0",
|
|
134
|
+
"@tanstack/react-query": "^4.35.7",
|
|
135
|
+
"css-loader": "^6.8.1",
|
|
136
|
+
"react-editor-js": "^2.1.0",
|
|
137
|
+
"sass": "^1.63.6",
|
|
138
|
+
"sass-loader": "^13.3.2",
|
|
139
|
+
"style-loader": "^3.3.3",
|
|
140
|
+
"to-string-loader": "^1.2.0",
|
|
141
|
+
"web-vitals": "^3.5.2"
|
|
142
|
+
}
|
|
143
|
+
}
|