@girs/ecal-2.0 2.0.0-3.0.0-beta.12
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/README.md +33 -0
- package/ecal-2.0.cjs +9 -0
- package/ecal-2.0.d.cts +5243 -0
- package/ecal-2.0.d.ts +5248 -0
- package/ecal-2.0.js +8 -0
- package/package.json +60 -0
- package/tsconfig.doc.json +19 -0
package/ecal-2.0.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@girs/ecal-2.0",
|
|
3
|
+
"version": "2.0.0-3.0.0-beta.12",
|
|
4
|
+
"description": "GJS TypeScript type definitions for ECal-2.0, generated from library version 2.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "ecal-2.0.js",
|
|
7
|
+
"main": "ecal-2.0.js",
|
|
8
|
+
"typedoc": {
|
|
9
|
+
"entryPoint": "./ecal-2.0.d.ts",
|
|
10
|
+
"readmeFile": "./README.md",
|
|
11
|
+
"displayName": "ECal-2.0",
|
|
12
|
+
"tsconfig": "./tsconfig.doc.json"
|
|
13
|
+
},
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": {
|
|
17
|
+
"types": "./ecal-2.0.d.ts",
|
|
18
|
+
"default": "./ecal-2.0.js"
|
|
19
|
+
},
|
|
20
|
+
"require": {
|
|
21
|
+
"types": "./ecal-2.0.d.cts",
|
|
22
|
+
"default": "./ecal-2.0.cjs"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"test": "yarn test:esm && yarn test:cjs",
|
|
28
|
+
"test:esm": "tsc --noEmit ecal-2.0.d.ts",
|
|
29
|
+
"test:cjs": "tsc --noEmit ecal-2.0.d.cts"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@girs/camel-1.2": "^1.2.0-3.0.0-beta.12",
|
|
33
|
+
"@girs/edataserver-1.2": "^1.2.0-3.0.0-beta.12",
|
|
34
|
+
"@girs/gio-2.0": "^2.75.1-3.0.0-beta.12",
|
|
35
|
+
"@girs/glib-2.0": "^2.75.1-3.0.0-beta.12",
|
|
36
|
+
"@girs/gobject-2.0": "^2.75.1-3.0.0-beta.12",
|
|
37
|
+
"@girs/icalglib-3.0": "^3.0.0-3.0.0-beta.12",
|
|
38
|
+
"@girs/json-1.0": "^1.7.1-3.0.0-beta.12",
|
|
39
|
+
"@girs/libxml2-2.0": "^2.0.0-3.0.0-beta.12",
|
|
40
|
+
"@girs/soup-3.0": "^3.3.1-3.0.0-beta.12"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"typescript": "^*"
|
|
44
|
+
},
|
|
45
|
+
"keywords": [
|
|
46
|
+
"Gir",
|
|
47
|
+
"TypeScript",
|
|
48
|
+
"ECal-2.0"
|
|
49
|
+
],
|
|
50
|
+
"author": "ts-for-gir",
|
|
51
|
+
"license": "Apache-2.0",
|
|
52
|
+
"repository": {
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
55
|
+
},
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/gjsify/ts-for-gir/issues"
|
|
58
|
+
},
|
|
59
|
+
"homepage": "https://github.com/gjsify/ts-for-gir#readme"
|
|
60
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
// General settings for code interpretation
|
|
4
|
+
"target": "ESNext",
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"experimentalDecorators": true,
|
|
7
|
+
"moduleResolution": "node",
|
|
8
|
+
"noEmit": true,
|
|
9
|
+
"noEmitOnError": false,
|
|
10
|
+
"baseUrl": "./",
|
|
11
|
+
"rootDir": ".",
|
|
12
|
+
// General settings for code generation
|
|
13
|
+
"removeComments": false,
|
|
14
|
+
"inlineSourceMap": false,
|
|
15
|
+
"inlineSources": false,
|
|
16
|
+
"newLine": "LF"
|
|
17
|
+
},
|
|
18
|
+
"include": ["./ecal-2.0.d.ts"]
|
|
19
|
+
}
|