-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "react-node-insim",
"version": "0.0.6",
"description": "React Node InSim",
"author": "Martin Kapal <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"repository": "[email protected]:simbroadcasts/react-node-insim.git",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -b ./src/tsconfig.cjs.json ./src/tsconfig.esm.json ./src/tsconfig.types.json",
"start": "tsx watch examples/index.tsx",
"format": "run-s \"format:no-write --write\"",
"format:no-write": "prettier \"./**/*.{js,ts,md,json,yml,yaml}\"",
"format:check": "run-s \"format:no-write --check\"",
"lint": "eslint \"./src/**/*\" --ext .js,.ts",
"lint:fix": "eslint \"./src/**/*\" --ext .js,.ts --fix"
},
"peerDependencies": {
"node-insim": "^0.9.1 || 1 || 2 || 3 || 4",
"react": ">=18"
},
"dependencies": {
"@types/react-reconciler": "^0.28.2",
"@welefen/grid-layout": "^1.1.0",
"debug": "^4.3.4",
"ramda": "^0.30.1",
"react-reconciler": "0.29.0",
"yoga-layout-prebuilt": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@types/debug": "^4.1.7",
"@types/node": "^18.11.9",
"@types/ramda": "^0.30.0",
"@types/react": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"esbuild": "^0.15.13",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"node-insim": "^4.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"tsx": "^3.12.6",
"typescript": "^4.9.5"
}
}