-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
92 lines (92 loc) · 4.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@esri/calcite-components",
"version": "2.13.2",
"homepage": "https://developers.arcgis.com/calcite-design-system/",
"description": "Web Components for Esri's Calcite Design System.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"jsdelivr": "dist/calcite/calcite.js",
"unpkg": "dist/calcite/calcite.js",
"collection:main": "dist/collection/index.js",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/",
"hydrate/"
],
"scripts": {
"build": "npm run util:prep-build-reqs && stencil build",
"postbuild": "npm run util:generate-t9n-docs-json && npm run util:clean-readmes",
"build:watch": "npm run util:prep-build-reqs && stencil build --no-docs --watch",
"build:watch-dev": "npm run util:prep-build-reqs && stencil build --no-docs --dev --watch",
"build-storybook": "npm run util:prep-storybook-build && NODE_OPTIONS=--openssl-legacy-provider storybook build --output-dir ./docs --quiet",
"clean": "npm run util:clean-js-files && npm run util:clean-readmes && rimraf node_modules dist www hydrate docs .turbo",
"lint": "concurrently npm:lint:*",
"lint:html": "prettier --write \"**/*.html\" >/dev/null",
"lint:json": "prettier --write \"**/*.json\" >/dev/null",
"lint:md": "prettier --write \"**/*.md\" >/dev/null && markdownlint \"**/*.md\" --fix --dot --ignore-path .gitignore",
"lint:scss": "stylelint --fix \"src/**/*.scss\" && prettier --write \"**/*.scss\" >/dev/null",
"lint:ts": "eslint --ext .ts,.tsx --fix . && prettier --write \"**/*.ts?(x)\" >/dev/null",
"prepublish": "./support/cleanupDistFiles.sh",
"posttest": "npm run test:prerender",
"screenshot-tests": "storybook build",
"screenshot-tests:preview": "npm run util:prep-storybook-build && NODE_OPTIONS=--openssl-legacy-provider STORYBOOK_SCREENSHOT_LOCAL_BUILD=true storybook dev",
"screenshot-tests:publish": "npm run screenshot-tests && storybook-to-ghpages --existing-output-dir=docs",
"start": "npm run util:clean-js-files && concurrently --kill-others --raw \"tsc --project ./tsconfig-demos.json --watch\" \"npm run build:watch-dev -- --serve\"",
"test": "stencil test --no-docs --no-build --spec --e2e",
"test:prerender": "npm run build -- --prerender",
"test:watch": "stencil test --no-docs --spec --e2e --watchAll",
"util:clean-tested-build": "npm ci && npm test && npm run build",
"util:copy-assets": "npm run util:copy-icons",
"util:copy-icons": "cpy \"../../node_modules/@esri/calcite-ui-icons/js/*.json\" \"./src/components/icon/assets/icon/\" --flat",
"util:generate-t9n-docs-json": "tsx support/generateT9nDocsJSON.ts",
"util:generate-t9n-types": "tsx support/generateT9nTypes.ts",
"util:hydration-styles": "tsx support/hydrationStyles.ts",
"util:prep-build-reqs": "npm run util:copy-assets && npm run util:generate-t9n-types",
"util:prep-storybook-build": "npm run util:prep-build-reqs && stencil build --config stencil.storybook.config.ts && npm run lint:md",
"util:sync-t9n-en-bundles": "tsx support/syncEnT9nBundles.ts",
"util:test-types": "! grep -rnw 'dist/types' -e '<reference types='",
"util:clean-js-files": "rimraf --glob -- *.js {src,.storybook,support}/**.js",
"util:clean-readmes": "git restore src/components/*/readme.md",
"util:is-working-tree-clean": "[ -z \"$(git status --porcelain=v1)\" ]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/calcite-design-system.git",
"directory": "packages/calcite-components"
},
"dependencies": {
"@esri/calcite-ui-icons": "3.32.0",
"@floating-ui/dom": "1.6.11",
"@stencil/core": "4.20.0",
"@types/color": "3.0.6",
"@types/sortablejs": "1.15.8",
"color": "4.2.3",
"composed-offset-position": "0.0.6",
"dayjs": "1.11.13",
"focus-trap": "7.6.0",
"interactjs": "1.10.27",
"lodash-es": "4.17.21",
"sortablejs": "1.15.3",
"timezone-groups": "0.10.2",
"type-fest": "4.18.2"
},
"devDependencies": {
"@esri/calcite-design-tokens": "2.2.1-next.4",
"@esri/eslint-plugin-calcite-components": "1.2.1",
"@stencil-community/eslint-plugin": "0.8.0",
"@stencil-community/postcss": "2.2.0",
"@stencil/angular-output-target": "0.8.4",
"@stencil/react-output-target": "0.5.3",
"@stencil/sass": "3.0.12",
"jsdom": "24.1.3"
},
"license": "SEE LICENSE.md",
"volta": {
"extends": "../../package.json"
}
}