-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.92 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
{
"name": "@genexus/chameleon-controls-library",
"version": "6.0.0-next.56",
"description": "chameleon - A library of white-label, highly-customizable and reusable web components",
"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/components.d.ts",
"type": "module",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/chameleon/chameleon.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "npm run build.monaco && npm run build.light && npm run build.extras",
"build.light": "stencil build --docs",
"build.extras": "tsc --project tsconfig-collection.json && node copy-files.mjs",
"build.monaco": "vite build",
"generate": "stencil generate",
"prettier": "prettier src/**/*.{tsx,ts,jsx,js,css,json,md} --write",
"lint": "eslint src/**/*{.ts,.tsx} --fix",
"start": "npm run build.monaco && npm run start.light",
"start.light": "stencil build --dev --watch --serve",
"start.optimized": "stencil build --dev --watch --serve --config stencil.config.optimized-dev.ts",
"test": "stencil test --spec --e2e --maxWorkers=1",
"test.spec": "stencil test --spec --coverage --no-cache",
"test.watch": "npm run test -- --watchAll --config stencil.config.optimized-test-watch.ts",
"validate": "npm run lint && npm run test && npm run build",
"validate.ci": "npm run lint && npm run build.monaco && npm run test && npm run build.light --debug && npm run build.extras"
},
"license": "MIT",
"dependencies": {
"@genexus/markdown-parser": "~0.1.1",
"html5-qrcode": "^2.3.8",
"monaco-editor": "^0.48.0",
"monaco-yaml": "^5.1.1",
"qr-creator": "^1.0.0",
"stencil-click-outside": "^1.8.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@stencil-community/eslint-plugin": "~0.7.1",
"@stencil/core": "~4.16.0",
"@stencil/sass": "~3.0.11",
"@types/hast": "^3.0.4",
"@types/jest": "~29.5.1",
"@types/mdast": "^4.0.3",
"@types/prettier": "~2.4.0",
"@types/puppeteer": "~5.4.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"husky": "~8.0.0",
"jest": "~29.7.0",
"jest-cli": "~29.7.0",
"lint-staged": "~13.0.0",
"prettier": "~2.8.8",
"puppeteer": "~22.6.5",
"typescript": "~5.4.5",
"vite": "^5.2.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,jsx,js,css,json,md}": [
"prettier --write",
"git add"
],
"*.{tsx,ts,jsx,js}": [
"eslint --fix",
"git add"
]
}
}