-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.7 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
{
"name": "@uiw/react-codesandbox",
"version": "1.1.5",
"description": "A React component is provided that allows you to programmatically generate codesandbox projects from code samples on the fly.",
"main": "cjs/index.js",
"module": "esm/index.js",
"homepage": "https://uiwjs.github.io/react-codesandbox/",
"scripts": {
"prepare": "npm run build",
"doc": "kkt build --app-src ./website",
"start": "kkt start --app-src ./website",
"watch": "tsbb watch src/*.tsx --use-babel",
"build": "tsbb build src/*.tsx --use-babel"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-codesandbox.git"
},
"author": "Kenny Wang <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"codesandbox",
"react-codesandbox"
],
"files": [
"src",
"esm",
"cjs"
],
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"@babel/runtime": ">=7.10.0"
},
"dependencies": {
"codesandbox-import-utils": "~2.2.3"
},
"devDependencies": {
"@kkt/less-modules": "^7.4.9",
"@kkt/raw-modules": "^7.4.9",
"@kkt/scope-plugin-options": "^7.4.9",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@uiw/react-github-corners": "~1.5.3",
"@uiw/react-markdown-preview": "~3.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"kkt": "^7.4.9",
"tsbb": "^4.1.4"
},
"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"
]
}
}