-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.01 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.01 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gitlantis",
"description": "Transform your project into an explorable 3D world",
"publisher": "brian-njogu",
"displayName": "Gitlantis",
"main": "./out/index.js",
"icon": "logo.png",
"engines": {
"vscode": "^1.80.0"
},
"contributes": {
"commands": [
{
"command": "gitlantis.start",
"title": "Gitlantis"
}
]
},
"private": true,
"version": "0.0.7",
"type": "commonjs",
"scripts": {
"dev": "vite",
"lint": "eslint .",
"preview": "vite preview",
"build:browser": "tsc -b && vite build",
"build:extension": "tsc -p tsconfig.extension.json",
"build": "npm run build:browser && npm run build:extension",
"watch": "tsc -watch -p tsconfig.extension.json",
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies",
"release": "pnpm run build && pnpm run package && pnpm run publish",
"prepare": "husky",
"format": "prettier --check './src/**/*.{js,jsx,ts,tsx,css}'",
"format:fix": "prettier --write './src/**/*.{js,jsx,ts,tsx,css}'",
"lint:fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@react-three/cannon": "^6.6.0",
"@react-three/drei": "^9.82.0",
"@react-three/fiber": "^8.14.1",
"@vercel/analytics": "^1.5.0",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.513.0",
"nipplejs": "^0.10.2",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-dom": "18.2.0",
"three": "^0.156.1",
"three-stdlib": "^2.25.1",
"zustand": "^5.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.0",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^22.15.24",
"@types/react": "^19.1.6",
"@types/react-color": "^3.0.13",
"@types/react-dom": "^19.1.5",
"@types/three": "^0.176.0",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@vitejs/plugin-react-swc": "^3.9.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-tailwindcss": "^3.18.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"postcss": "^8.5.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "3.4.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-eslint": "^1.8.1"
},
"activationEvents": [
"onCommand:gitlantis.openWebview",
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "https://github.com/liltrendi/gitlantis"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"prettier --write './src/**/*.{js,jsx,ts,tsx,css}'"
]
}
}