-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.38 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
{
"name": "tsx-browser-compiler",
"version": "1.0.0-alpha.3",
"description": "Transform a set of `.tsx` file into React element, extremely useful for the \"live edit\" feature in component library documents.",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"typings": "typings",
"scripts": {
"start": "cross-env rollup -c rollup.config.pages.ts -w",
"dev": "cross-env pnpm start",
"lint:eslint": "cross-env eslint --ext .ts,.tsx . --quiet",
"lint:stylelint": "cross-env stylelint '**/*.{css,less}' --fix",
"build": "cross-env rollup -c",
"build:pages": "cross-env NODE_ENV=production BASEDIR=docs rollup -c rollup.config.pages.ts",
"prepublish": "cross-env pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RexSkz/json-diff-kit.git"
},
"keywords": [
"tsx",
"react",
"compiler",
"browser"
],
"author": "Rex Zeng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RexSkz/tsx-browser-compiler/issues"
},
"homepage": "https://github.com/RexSkz/tsx-browser-compiler#readme",
"dependencies": {
"@typescript/vfs": "^1.5.0",
"prism-react-renderer": "^2.3.1",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^5.0.2",
"@swc/core": "^1.3.56",
"@swc/jest": "^0.2.26",
"@types/jest": "^27.4.1",
"@types/node": "^20.11.16",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.77",
"@types/react-dom": "^18.2.25",
"@types/terminal-kit": "^2.5.6",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-plugin-rexskz": "1.0.0-alpha.4",
"fork-me-on-github": "^1.0.6",
"jest": "^27.4.7",
"less": "^4.1.3",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.67.0",
"rollup-plugin-external-globals": "^0.10.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-swc": "^0.2.1",
"stylelint": "^15",
"stylelint-plugin-rexskz": "1.0.0-alpha.3",
"typescript": "~5.1"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18",
"typescript": "^4 || ~5.0 || ~5.1"
}
}