-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 1.98 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
{
"name": "simde",
"version": "2.5.0",
"description": "Educational superscalar and VLIW simulator",
"homepage": "https://github.com/SIMDE-ULL/SIMDE",
"bugs": {
"url": "https://github.com/SIMDE-ULL/SIMDE/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SIMDE-ULL/SIMDE.git"
},
"license": "GPL-3.0",
"author": "The SIMDE authors",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"check": "biome check --apply ./src",
"dev": "vite",
"docs": "typedoc src/index.ts --excludePrivate --mode file --theme minimal --out build/docs",
"fmt": "biome format --write ./src",
"lint": "biome lint --apply ./src",
"test": "vitest --run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.1.3",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"i18next": "^23.0.0",
"i18next-browser-languagedetector": "8.0.0",
"i18next-http-backend": "^2.2.0",
"i18next-localstorage-cache": "1.1.1",
"react": "^18.2.0",
"react-bootstrap": "^2.4.0",
"react-color": "^2.14.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.0",
"react-redux": "^9.0.0",
"react-router": "^6.0.0",
"react-router-dom": "^6.0.0",
"redux": "^5.0.0",
"typescript-parsec": "^0.3.4"
},
"devDependencies": {
"@biomejs/biome": "^1.6.1",
"@types/node": "^22.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^2.0.0",
"sass": "^1.69.5",
"stylelint": "^16.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"typedoc": "^0.26.0",
"typescript": "^5.0.2",
"vite": "^5.0.0",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=18"
}
}