-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 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
{
"name": "build",
"version": "1.0.0",
"description": "build file for Retree packcages",
"main": "index.js",
"workspaces": [
"packages/retree-core",
"packages/retree-react",
"samples/01.core-example",
"samples/02.react-example",
"samples/03.react-recursion"
],
"scripts": {
"doctor": "prettier --write . && eslint **/src/**/*.{j,t}s{,x} --fix --no-error-on-unmatched-pattern",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"@rolldown/plugin-babel": "^0.2.3",
"@testing-library/react": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"jsdom": "^26.1.0",
"prettier": "^2.8.8",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vite": "^8.0.0",
"vitest": "^3.2.4"
}
}