@ganpatiinfo/gids-core-web 0.0.2
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 +3 -0
- package/dist/custom-elements.json +54 -0
- package/dist/index.css +9 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.js +230 -0
- package/dist/index.js.map +1 -0
- package/dist/types/components.d.ts +24 -0
- package/dist/types/index.d.ts +0 -0
- package/dist/types/stencil-public-runtime.d.ts +1702 -0
- package/dist/types/utils/constructedGidsStylesheet.d.ts +2 -0
- package/package.json +138 -0
package/package.json
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ganpatiinfo/gids-core-web",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "This is a core web package contains html components",
|
|
6
|
+
"homepage": "https://ganpatiinfosystem.vercel.app/",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"clean:current": "del-cli dist/** dist-dev/** src/components.d.ts",
|
|
12
|
+
"clean:stencil-generated": "del-cli --force ../react-web/src/components/stencil-generated",
|
|
13
|
+
"clean": "npm-run-all --parallel clean:**",
|
|
14
|
+
"prebuild": "node ./scripts/generateCode.js",
|
|
15
|
+
"build:js": "stencil build",
|
|
16
|
+
"build:css": "sass src/index.scss:dist/index.css",
|
|
17
|
+
"build:ce-manifest": "cem analyze",
|
|
18
|
+
"build": "npm-run-all --parallel build:**",
|
|
19
|
+
"postbuild": "node scripts/fixupBuild.js",
|
|
20
|
+
"watch:js": "stencil build --watch",
|
|
21
|
+
"watch:css": "sass --watch src/index.scss dist/index.css",
|
|
22
|
+
"watch": "npm-run-all build --parallel watch:**",
|
|
23
|
+
"start": "npm-run-all build --parallel watch:js storybook",
|
|
24
|
+
"test": "stencil test --config stencil.test-config.ts --spec --e2e --coverage",
|
|
25
|
+
"test:local": "stencil test --config stencil.test-config.ts --spec --e2e --watchAll",
|
|
26
|
+
"generate": "stencil generate",
|
|
27
|
+
"storybook": "storybook dev --config-dir .storybook-dev -p 6006",
|
|
28
|
+
"size": "size-limit",
|
|
29
|
+
"release:manually": "npm run build && npm publish --access public"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"core",
|
|
33
|
+
"web",
|
|
34
|
+
"html",
|
|
35
|
+
"components",
|
|
36
|
+
"gids-core-web"
|
|
37
|
+
],
|
|
38
|
+
"author": {
|
|
39
|
+
"name": "Ganpatiinfo Design System",
|
|
40
|
+
"email": "ganpatiinfosysystem0@gmail.com",
|
|
41
|
+
"url": "https://ganpatiinfosystem.vercel.app/"
|
|
42
|
+
},
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/ganpatiinfosystem/ganpatiinfo-design-system",
|
|
47
|
+
"directory": "packages/gids-core-web"
|
|
48
|
+
},
|
|
49
|
+
"customElements": "dist/custom-elements.json",
|
|
50
|
+
"style": "dist/index.css",
|
|
51
|
+
"type": "module",
|
|
52
|
+
"main": "dist/index.js",
|
|
53
|
+
"types": "dist/index.d.ts",
|
|
54
|
+
"exports": {
|
|
55
|
+
"./index.css": {
|
|
56
|
+
"style": "./dist/index.css",
|
|
57
|
+
"default": "./dist/index.css"
|
|
58
|
+
},
|
|
59
|
+
"./elements.css": {
|
|
60
|
+
"style": "./dist/elements.css",
|
|
61
|
+
"default": "./dist/elements.css"
|
|
62
|
+
},
|
|
63
|
+
".": {
|
|
64
|
+
"types": "./dist/index.d.ts",
|
|
65
|
+
"default": "./dist/index.js"
|
|
66
|
+
},
|
|
67
|
+
"./customElements": {
|
|
68
|
+
"default": "./dist/custom-elements.json"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"clsx": "2.1.1"
|
|
73
|
+
},
|
|
74
|
+
"dependencies": {
|
|
75
|
+
"clsx": "2.1.1",
|
|
76
|
+
"@ganpatiinfo/gids-core-shared": "0.0.2",
|
|
77
|
+
"@ganpatiinfo/gids-web-shared": "0.0.2"
|
|
78
|
+
},
|
|
79
|
+
"devDependencies": {
|
|
80
|
+
"@babel/preset-env": "7.27.2",
|
|
81
|
+
"@babel/preset-typescript": "7.27.1",
|
|
82
|
+
"@custom-elements-manifest/analyzer": "0.10.4",
|
|
83
|
+
"@fontsource/inter": "5.2.5",
|
|
84
|
+
"@fontsource/libre-caslon-text": "5.2.5",
|
|
85
|
+
"@ganpatiinfo/gids-liquid-renderer": "0.0.2",
|
|
86
|
+
"@ganpatiinfo/gids-storybook-theme": "0.0.2",
|
|
87
|
+
"@ganpatiinfo/gids-storybook-utilities": "0.0.2",
|
|
88
|
+
"@ganpatiinfo/gids-web-dom-reference": "0.0.2",
|
|
89
|
+
"@ganpatiinfo/gids-web-theme-ganpatiinfo": "0.0.2",
|
|
90
|
+
"@jest/globals": "29.7.0",
|
|
91
|
+
"@stencil/core": "4.31.0",
|
|
92
|
+
"@stencil/react-output-target": "1.0.2",
|
|
93
|
+
"@storybook/addon-a11y": "8.6.12",
|
|
94
|
+
"@storybook/addon-essentials": "8.6.12",
|
|
95
|
+
"@storybook/addon-links": "8.6.12",
|
|
96
|
+
"@storybook/blocks": "8.6.12",
|
|
97
|
+
"@storybook/manager-api": "8.6.12",
|
|
98
|
+
"@storybook/test": "8.6.12",
|
|
99
|
+
"@storybook/web-components": "8.6.13",
|
|
100
|
+
"@storybook/web-components-vite": "8.6.13",
|
|
101
|
+
"@types/jest": "29.5.14",
|
|
102
|
+
"jest": "29.7.0",
|
|
103
|
+
"jest-cli": "29.7.0",
|
|
104
|
+
"puppeteer": "24.8.2",
|
|
105
|
+
"saas": "1.0.0",
|
|
106
|
+
"storybook": "8.6.13",
|
|
107
|
+
"storybook-addon-tag-badges": "1.4.0",
|
|
108
|
+
"ts-jest": "29.3.3"
|
|
109
|
+
},
|
|
110
|
+
"nx": {
|
|
111
|
+
"target": {
|
|
112
|
+
"build": {
|
|
113
|
+
"outputs": [
|
|
114
|
+
"{projectRoot}/dist",
|
|
115
|
+
"{projectRoot}/dist-dev",
|
|
116
|
+
"{projectRoot}/src",
|
|
117
|
+
"{workspaceRoot}/packages/react-web/src/components/stencil-generated"
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"size-limit": [
|
|
123
|
+
{
|
|
124
|
+
"name": "JavaScript (exclusive GIDS dependencies package)",
|
|
125
|
+
"path": [
|
|
126
|
+
"dist/index.js"
|
|
127
|
+
],
|
|
128
|
+
"import": {
|
|
129
|
+
"dist/index.js": "*"
|
|
130
|
+
},
|
|
131
|
+
"ignore": []
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "CSS core",
|
|
135
|
+
"path": "dist/index.css"
|
|
136
|
+
}
|
|
137
|
+
]
|
|
138
|
+
}
|