-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.37 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.37 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
{
"name": "@uiw/react-run-web",
"version": "1.0.14",
"description": "Online Code Editor for Rapid Web Development.",
"homepage": "https://uiwjs.github.io/react-run-web/",
"main": "cjs/index.js",
"module": "esm/index.js",
"scripts": {
"prepare": "husky install && npm run build",
"doc": "kkt build --app-src ./website",
"start": "kkt start --app-src ./website",
"watch": "tsbb watch",
"build": "tsbb build",
"bundle": "ncc build src/index.tsx --target web --filename run-web",
"bundle:min": "ncc build src/index.tsx --target web --filename run-web --minify",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "kkt test --env=jsdom --app-src=./website",
"test:coverage": "kkt test --env=jsdom --coverage --app-src=./website"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-run-web.git"
},
"author": "Kenny Wong <wowohoo@qq.com>",
"license": "MIT",
"files": [
"dist",
"cjs",
"esm",
"src"
],
"keywords": [
"react",
"run-web",
"code-editor",
"editor"
],
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json}": [
"prettier --write"
]
},
"jest": {
"coverageReporters": [
"lcov",
"json-summary"
]
},
"peerDependencies": {
"@babel/runtime": ">=7.10.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@kkt/less-modules": "~7.1.1",
"@kkt/ncc": "~1.0.8",
"@kkt/raw-modules": "~7.1.1",
"@kkt/scope-plugin-options": "~7.1.1",
"@types/react": "~17.0.39",
"@types/react-dom": "~17.0.11",
"@types/react-test-renderer": "~17.0.1",
"@uiw/react-github-corners": "~1.5.3",
"@uiw/react-markdown-preview": "~3.5.0",
"@uiw/react-split": "~5.8.7",
"@uiw/react-textarea-code-editor": "~1.6.0",
"husky": "~7.0.4",
"kkt": "~7.1.5",
"lint-staged": "~12.3.4",
"prettier": "~2.5.1",
"react": "~17.0.2",
"react-dom": "~17.0.2",
"react-router-dom": "~6.2.1",
"react-test-renderer": "~17.0.2",
"tsbb": "~3.7.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}