-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.07 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
{
"name": "@labiomics/aramas",
"version": "1.2.0",
"description": "Ambiente Remoto para o Aprendizado e Manipulação de Arquivos e Sistemas - A gamified educational platform for learning Linux and Bioinformatics.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/aramas.umd.cjs",
"module": "./dist/aramas.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/aramas.js",
"require": "./dist/aramas.umd.cjs",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LaBiOmicS/aramas.git"
},
"keywords": [
"linux",
"bioinformatics",
"gamification",
"education",
"terminal",
"xtermjs",
"react",
"simulation"
],
"author": "Fabiano B. Menegidio",
"license": "MIT",
"engines": {
"node": ">=22.22.2"
},
"bugs": {
"url": "https://github.com/LaBiOmicS/aramas/issues"
},
"homepage": "https://labiomics.github.io/aramas/",
"scripts": {
"dev": "vite",
"build": "npm run build:app && npm run build:lib",
"build:app": "tsc -b && vite build",
"build:lib": "vite build --config vite.library.config.ts",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"react-router-dom": "^7.14.2",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"peerDependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"gh-pages": "^6.3.0",
"globals": "^17.5.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.9",
"vitest": "^3.0.0"
}
}