-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@exadel/ui-playground",
"version": "2.1.0-beta.1",
"description": "UIPlayground is a solution for presenting your custom components.",
"license": "MIT",
"keywords": [
"playground",
"demo",
"presentation",
"editor",
"custom elements"
],
"publishConfig": {
"access": "public",
"scope": "@exadel"
},
"types": "esm/registration.d.ts",
"module": "esm/registration.js",
"style": "esm/registration.css",
"files": [
"tsconfig.json",
"README.md",
"CLA.md",
"CHANGELOG.md",
"esm/**/*.{js,ts,css,less}"
],
"sideEffects": [
"src/**/*.less"
],
"scripts": {
"start": "cd site && npm run start",
"clean": "rimraf esm",
"build": "npm run clean && npm run build:less && npm run build:ts",
"build:ts": "tsc --project tsconfig.json",
"build:less": "npm run build:less:cpy && npm run build:less:css",
"build:less:cpy": "copyfiles -u 1 \"./src/**/*.less\" \"esm\"",
"build:less:css": "foreach -x \"lessc --npm-import=\"prefix=~\" #{path} #{dir}/#{name}.css\" -g \"esm/{*,*/*}.less\"",
"watch": "concurrently \"npm run watch:less\" \"npm run watch:ts\"",
"watch:ts": "tsc --project tsconfig.json --watch",
"watch:less": "chokidar --initial \"src/**/*.less\" -c \"npm run build:less\"",
"lint": "concurrently \"npm run lint:js\" \"npm run lint:css\"",
"lint:js": "eslint src/**/*.ts",
"lint:css": "stylelint src/**/*.less",
"prepare": "husky && npm run build",
"version": "cross-env-shell \"npm version $npm_package_version --no-git-tag-version --ws\" && git add **/package*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exadel-inc/ui-playground.git"
},
"contributors": [
"Yuliya Adamskaya <[email protected]>",
"Harshunova Natallia <[email protected]>",
"Palanevich Aliaksandr <[email protected]>",
"Valchetskaya Palina <[email protected]>",
"Bazukevich Aliaksandr <[email protected]>"
],
"bugs": {
"url": "https://github.com/exadel-inc/ui-playground/issues"
},
"homepage": "https://github.com/exadel-inc/ui-playground#readme",
"engines": {
"node": ">=18.17.0"
},
"workspaces": [
"site"
],
"dependencies": {
"codejar": "^4.2.0",
"jsx-dom": "6.4.23",
"prismjs": "^1.29.0"
},
"peerDependencies": {
"@exadel/esl": "^4.13.0 || ^5.0.0 || ^5.0.0-beta.38"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@exadel/eslint-config-esl": "^5.0.0-beta.38",
"@exadel/eslint-plugin-esl": "^5.0.0-beta.38",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/prismjs": "^1.26.5",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.1.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"foreach-cli": "^1.8.1",
"husky": "^9.1.6",
"kleur": "^4.1.5",
"less": "^4.2.0",
"less-plugin-npm-import": "^2.1.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.48",
"postcss-less": "^6.0.0",
"postcss-preset-env": "^10.0.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"stylelint": "^16.10.0",
"stylelint-prettier": "^5.0.2",
"typescript": "5.6.3"
},
"browserslist": [
"last 3 versions",
"> 1%",
"not dead",
"not ie 11"
]
}