-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "@fromscratchcode/tupelo",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tupelo.css": "./dist/tupelo.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.json && vite build",
"build:lib": "vite build --mode lib && tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"prepare": "npm run build:lib"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"xterm": "^5.3.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@eslint/js": "^9.39.4",
"@rolldown/plugin-babel": "^0.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^6.0.3",
"vite": "^8.0.4"
}
}