forked from Lundalogik/lime-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.57 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.57 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@limetech/lime-elements",
"version": "39.2.2",
"description": "Lime Elements",
"author": "Lime Technologies",
"license": "Apache-2.0",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"main": "dist/index.cjs.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/",
"CHANGELOG.md"
],
"scripts": {
"api:update": "npm run build && node scripts/fix-tsdoc-tags.cjs && api-extractor run --local --verbose",
"api:verify": "(shx test -f src/components.d.ts || (npm run build && npm run build)) && node scripts/fix-tsdoc-tags.cjs && api-extractor run",
"build": "cross-env-shell NODE_ENV=prod SASS_PATH=node_modules \"stencil build --config stencil.config.dist.ts\"",
"dev": "cross-env-shell SASS_PATH=node_modules \"stencil build --dev --docs\"",
"watch": "cross-env-shell SASS_PATH=node_modules \"stencil build --dev --watch --docs --serve\"",
"watch:prod": "shx rm -rf www/ && cross-env-shell SASS_PATH=node_modules \"stencil build --watch\"",
"docs:build": "cross-env-shell NODE_ENV=prod SASS_PATH=node_modules \"stencil build --docs --config stencil.config.docs.ts\"",
"docs:context7": "node generate-context7-docs.cjs",
"docs:publish": "node publish-docs.cjs",
"lint": "eslint --max-warnings=0 && prettier -c --ignore-path .gitignore **/*.scss",
"lint:fix": "eslint --max-warnings=0 --fix && prettier --write --ignore-path .gitignore **/*.scss",
"start": "npm run watch",
"test": "npx playwright install chromium && stencil-test",
"test:spec": "stencil-test --project spec",
"test:e2e": "npx playwright install chromium && stencil-test --project e2e",
"test:watch": "npx playwright install chromium && stencil-test --watch",
"test:watch:spec": "stencil-test --watch --project spec",
"test:watch:e2e": "npx playwright install chromium && stencil-test --watch --project e2e",
"generate": "stencil generate"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@limetech/eslint-config": "^4.0.0",
"@microsoft/api-extractor": "^7.52.11",
"@popperjs/core": "^2.11.8",
"@rjsf/core": "^2.4.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@stencil/core": "^4.43.1",
"@stencil/sass": "^3.2.2",
"@stencil/vitest": "^1.1.21",
"@types/codemirror": "^5.60.2",
"@types/html-escaper": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/tabulator-tables": "^6.2.4",
"@vitest/browser-playwright": "^4.0.18",
"codemirror": "^5.65.9",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"eslint": "^9.34.0",
"flatpickr": "^4.6.13",
"glob": "^13.0.1",
"globals": "^16.0.0",
"html-escaper": "^3.0.3",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jsonlint-mod": "^1.7.6",
"jsx-dom": "^8.1.6",
"kompendium": "^1.1.0",
"lodash-es": "^4.17.21",
"material-components-web": "^13.0.0",
"moment": "^2.30.1",
"number-abbreviate": "^2.0.0",
"parse-css-color": "^0.2.1",
"postal-mime": "^2.7.3",
"prettier": "^3.5.0",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-markdown": "^1.13.2",
"prosemirror-model": ">=1.22.1",
"prosemirror-schema-basic": "^1.2.4",
"prosemirror-tables": "^1.6.4",
"puppeteer": "^19.11.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-shadow-dom-retarget-events": "^1.1.0",
"rehype-parse": "^9.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"replace-in-file": "^7.2.0",
"shelljs": "0.10.0",
"shx": "^0.4.0",
"sortablejs": "^1.15.6",
"style-to-object": "^1.0.9",
"tabulator-tables": "^6.3.1",
"typescript": "^4.9.5",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"overrides": {
"prosemirror-model": ">=1.22.1"
},
"keywords": [
"lime elements",
"lime crm",
"material design",
"component library",
"web components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Lundalogik/lime-elements.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/Lundalogik/lime-elements/issues"
},
"homepage": "https://github.com/Lundalogik/lime-elements#readme",
"packageManager": "npm@>=10.9",
"dependencies": {
"sortablejs": "^1.15.6"
}
}