@progress/kendo-spreadsheet-common 1.0.0-develop.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/LICENSE.md +7 -0
- package/README.md +9 -0
- package/dist/index-esm.js +28216 -0
- package/dist/index.js +28218 -0
- package/package.json +72 -0
- package/src/index.d.ts +1 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@progress/kendo-spreadsheet-common",
|
|
3
|
+
"description": "Kendo UI platform-independent Spreadsheet library",
|
|
4
|
+
"version": "1.0.0-develop.1",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Kendo UI"
|
|
7
|
+
],
|
|
8
|
+
"author": "Progress",
|
|
9
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
10
|
+
"main": "dist/index.js",
|
|
11
|
+
"module": "dist/index-esm.js",
|
|
12
|
+
"types": "src/index.d.ts",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "rollup -c",
|
|
16
|
+
"lint": "eslint src",
|
|
17
|
+
"test": "jest",
|
|
18
|
+
"e2e": "jest --config ./jest.e2e.config.json",
|
|
19
|
+
"e2e:visual": "jest --config ./jest.e2e.visual.config.json",
|
|
20
|
+
"prepare": "husky install"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@progress/kendo-common": "^0.2.2",
|
|
24
|
+
"@progress/kendo-date-math": "^1.5.10",
|
|
25
|
+
"@progress/jszip-esm": "^1.0.3"
|
|
26
|
+
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@progress/kendo-drawing": "^1.17.1",
|
|
29
|
+
"@progress/kendo-intl": "^3.1.1"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@commitlint/cli": "^17.3.0",
|
|
33
|
+
"@commitlint/config-conventional": "^17.3.0",
|
|
34
|
+
"@progress/kendo-e2e": "^1.2.2",
|
|
35
|
+
"@progress/kendo-theme-default": "^5.0.0",
|
|
36
|
+
"@types/jest": "^29.0.0",
|
|
37
|
+
"es-jest": "^2.1.0",
|
|
38
|
+
"eslint": "^8.28.0",
|
|
39
|
+
"husky": "^8.0.2",
|
|
40
|
+
"jest-cli": "^29.0.0",
|
|
41
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
42
|
+
"rollup": "^3.5.1",
|
|
43
|
+
"semantic-release": "^19.0.5"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/telerik/kendo-spreadsheet-common.git"
|
|
48
|
+
},
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/telerik/kendo-angular"
|
|
51
|
+
},
|
|
52
|
+
"release": {
|
|
53
|
+
"branches": [
|
|
54
|
+
{
|
|
55
|
+
"name": "master",
|
|
56
|
+
"channel": "latest"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "develop",
|
|
60
|
+
"prerelease": true,
|
|
61
|
+
"channel": "dev"
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public"
|
|
67
|
+
},
|
|
68
|
+
"files": [
|
|
69
|
+
"dist",
|
|
70
|
+
"src/**/*.d.ts"
|
|
71
|
+
]
|
|
72
|
+
}
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Spreadsheet } from './spreadsheet';
|