-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.69 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.69 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
{
"name": "react-node-insim",
"version": "0.3.2",
"description": "React Node InSim",
"author": "Martin Kapal <flamecze@gmail.com>",
"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": {
"type": "git",
"url": "git+ssh://git@github.com/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",
"test": "run-s test:compile \"test:run {@}\" --",
"test:compile": "tsc -p tsconfig.test.json",
"test:run": "vitest",
"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",
"prepack": "run-s build"
},
"peerDependencies": {
"node-insim": "^6.0.0",
"react": ">=18",
"react-devtools-core": "^6.1.5"
},
"peerDependenciesMeta": {
"react-devtools-core": {
"optional": true
}
},
"dependencies": {
"@types/react-reconciler": "^0.28.2",
"@welefen/grid-layout": "^1.1.0",
"bunshi": "^2.1.5",
"debug": "^4.3.4",
"jotai": "^2.12.0",
"ramda": "^0.30.1",
"react-reconciler": "0.29.0",
"yoga-layout-prebuilt": "^1.10.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/mitm": "^1.3.8",
"@types/node": "^18.11.9",
"@types/ramda": "^0.30.0",
"@types/react": "^18.2.23",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vitest/coverage-v8": "3.2.1",
"dotenv": "^16.4.7",
"esbuild": "^0.25.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"mitm": "^1.7.3",
"node-insim": "^6.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-devtools-core": "^6.1.5",
"rimraf": "^5.0.5",
"tsx": "^3.12.6",
"typescript": "^4.9.5",
"vitest": "^3.2.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}