@ncino/web-components 1.0.0-alpha.39
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/package.json +121 -0
package/package.json
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ncino/web-components",
|
|
3
|
+
"author": "nCino",
|
|
4
|
+
"packageManager": "pnpm@9.12.0",
|
|
5
|
+
"version": "1.0.0-alpha.39",
|
|
6
|
+
"license": "(c) Copyright 2023 nCino, Inc., all rights reserved",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"registry": "https://registry.npmjs.org/"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/ncino/force-sdk-web-components.git"
|
|
13
|
+
},
|
|
14
|
+
"type": "module",
|
|
15
|
+
"main": "dist/index.js",
|
|
16
|
+
"module": "dist/index.js",
|
|
17
|
+
"engineStrict": false,
|
|
18
|
+
"private": false,
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=20.0.0",
|
|
21
|
+
"npm": ">=8.0.0",
|
|
22
|
+
"pnpm": ">=9.0.0"
|
|
23
|
+
},
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"types": "./dist/types/index.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./gator": {
|
|
30
|
+
"import": "./dist/index.gator.js",
|
|
31
|
+
"types": "./dist/types/index.gator.d.ts"
|
|
32
|
+
},
|
|
33
|
+
"./slds": {
|
|
34
|
+
"import": "./dist/index.slds.js",
|
|
35
|
+
"types": "./dist/types/index.slds.d.ts"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"web-types": "./web-types.json",
|
|
42
|
+
"scripts": {
|
|
43
|
+
"analyze": "cem analyze --litelement --config 'scripts/custom-elements-manifest.config.mjs'",
|
|
44
|
+
"build": "rimraf dist & tsc && vite build",
|
|
45
|
+
"build:storybook:gator": "storybook build -c .storybook-gator -o ../../docs",
|
|
46
|
+
"build:storybook:slds": "storybook build -c .storybook-slds -o ../../docs",
|
|
47
|
+
"chromatic": "pnpm dlx chromatic --build-script-name storybook:build --exit-zero-on-changes",
|
|
48
|
+
"dev": "pnpm run storybook",
|
|
49
|
+
"dependencies:check": "pnpm dlx npm-check-updates",
|
|
50
|
+
"dependencies:update": "pnpm dlx npm-check-updates -u",
|
|
51
|
+
"dependencies:update:patch": "pnpm dlx npm-check-updates -u --target patch",
|
|
52
|
+
"dependencies:update:minor": "pnpm dlx npm-check-updates -u --target minor",
|
|
53
|
+
"lint": "eslint .",
|
|
54
|
+
"preview": "vite preview",
|
|
55
|
+
"storybook:gator": "pnpm run analyze && storybook dev -c .storybook-gator -p 6006",
|
|
56
|
+
"storybook:slds": "pnpm run analyze && storybook dev -c .storybook-slds -p 6006",
|
|
57
|
+
"storybook:gator:cucumber": "kill $(lsof -ti:6006); pnpm run analyze && storybook dev -c .storybook-gator -p 6006 --no-open",
|
|
58
|
+
"storybook:slds:cucumber": "kill $(lsof -ti:6007); pnpm run analyze && storybook dev -c .storybook-slds -p 6007 --no-open",
|
|
59
|
+
"test": "vitest",
|
|
60
|
+
"test:coverage": "vitest --coverage.enabled true"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@floating-ui/dom": "^1.6.11",
|
|
64
|
+
"ckeditor5": "^43.2.0",
|
|
65
|
+
"lit": "^3.2.0"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@custom-elements-manifest/analyzer": "0.10.3",
|
|
69
|
+
"@lit/react": "^1.0.5",
|
|
70
|
+
"@salesforce-ux/design-system": "^2.25.2",
|
|
71
|
+
"@storybook/addon-a11y": "^8.3.4",
|
|
72
|
+
"@storybook/addon-actions": "^8.3.4",
|
|
73
|
+
"@storybook/addon-designs": "^8.0.3",
|
|
74
|
+
"@storybook/addon-docs": "^8.3.4",
|
|
75
|
+
"@storybook/addon-essentials": "^8.3.4",
|
|
76
|
+
"@storybook/addon-links": "^8.3.4",
|
|
77
|
+
"@storybook/blocks": "^8.3.4",
|
|
78
|
+
"@storybook/test": "^8.3.4",
|
|
79
|
+
"@storybook/web-components": "^8.3.4",
|
|
80
|
+
"@storybook/web-components-vite": "^8.3.4",
|
|
81
|
+
"@types/react": "^18.3.11",
|
|
82
|
+
"@typescript-eslint/parser": "^8.8.0",
|
|
83
|
+
"@vitest/browser": "^2.1.2",
|
|
84
|
+
"@vitest/coverage-istanbul": "^2.1.2",
|
|
85
|
+
"@vitest/ui": "2.1.2",
|
|
86
|
+
"cem-plugin-expanded-types": "^1.3.3",
|
|
87
|
+
"chromatic": "^11.11.0",
|
|
88
|
+
"custom-element-jet-brains-integration": "^1.6.2",
|
|
89
|
+
"custom-elements-manifest": "^2.1.0",
|
|
90
|
+
"eslint": "^9.11.1",
|
|
91
|
+
"eslint-config-standard": "^17.1.0",
|
|
92
|
+
"eslint-plugin-import": "^2.31.0",
|
|
93
|
+
"eslint-plugin-json": "^4.0.1",
|
|
94
|
+
"eslint-plugin-n": "^17.10.3",
|
|
95
|
+
"eslint-plugin-promise": "^7.1.0",
|
|
96
|
+
"eslint-plugin-storybook": "^0.9.0",
|
|
97
|
+
"eslint-plugin-yml": "1.14.0",
|
|
98
|
+
"glob": "^11.0.0",
|
|
99
|
+
"jsdom": "25.0.1",
|
|
100
|
+
"postcss": "^8.4.47",
|
|
101
|
+
"react": "^18.3.1",
|
|
102
|
+
"rimraf": "^6.0.1",
|
|
103
|
+
"sass": "1.79.4",
|
|
104
|
+
"storybook": "^8.3.4",
|
|
105
|
+
"storybook-addon-badges": "^1.0.3",
|
|
106
|
+
"storybook-dark-mode": "^4.0.2",
|
|
107
|
+
"storybook-design-token": "^3.1.0",
|
|
108
|
+
"typescript": "^5.6.2",
|
|
109
|
+
"vite": "^5.4.8",
|
|
110
|
+
"vite-plugin-dts": "4.2.3",
|
|
111
|
+
"vite-plugin-static-copy": "^1.0.6",
|
|
112
|
+
"vitest": "^2.1.2",
|
|
113
|
+
"wc-storybook-helpers": "2.0.3",
|
|
114
|
+
"webdriverio": "^9.1.2",
|
|
115
|
+
"yaml-eslint-parser": "^1.2.3"
|
|
116
|
+
},
|
|
117
|
+
"bugs": {
|
|
118
|
+
"url": "https://github.com/ncino/force-sdk-web-components/issues"
|
|
119
|
+
},
|
|
120
|
+
"homepage": "https://github.com/ncino/force-sdk-web-components#readme"
|
|
121
|
+
}
|