-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "@ui-js/code-playground",
"version": "1.13.2",
"description": "A web component to display editable, executable code",
"scripts": {
"build": "bash ./scripts/build.sh",
"dist": "bash ./scripts/build.sh production",
"lint": "prettier --config config/prettierrc.yaml --ignore-path ./.prettierignore --write \"**/*.{ts,js,css,md,yml,json}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "bash ./scripts/build.sh production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ui-js/code-playground.git"
},
"keywords": [
"webcomponent"
],
"files": [
"/dist"
],
"main": "./dist/code-playground.min.js",
"author": "arno@arno.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/ui-js/code-playground/issues"
},
"homepage": "https://github.com/ui-js/code-playground#readme",
"devDependencies": {
"@cortex-js/prettier-config": "^1.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/codemirror": "^5.60.5",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.7",
"eslint": "^8.12.0",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.3"
},
"prettier": "@cortex-js/prettier-config",
"dependencies": {
"tslib": "^2.3.1"
}
}