-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"name": "studio-website",
"description": "REVATI Studio Website",
"type": "module",
"private": true,
"version": "0.0.1",
"license": "BSD-3-Clause",
"author": "REVATI Studio",
"contributors": [
"Rinrin.rs <rinrin0413.valley@gmail.com>",
"RetoRuto9900K <tutinoko2048@gmail.com>"
],
"homepage": "https://studio.revati.jp",
"repository": {
"type": "git",
"url": "https://github.com/revati-jp/studio-website.git"
},
"bugs": {
"url": "https://github.com/revati-jp/studio-website/issues"
},
"scripts": {
"dev": "astro dev",
"build": "pnpm run licenses && astro build",
"preview": "astro preview",
"astro": "astro",
"licenses": "node ./scripts/collect-licenses.ts",
"format": "prettier . --write",
"lint": "prettier --check . && eslint \"src/**/*.{js,ts,astro}\"",
"lint:fix": "prettier --check . && eslint \"src/**/*.{js,ts,astro}\" --fix",
"check": "astro sync && astro check --tsconfig ./tsconfig.json"
},
"dependencies": {
"@astrojs/svelte": "^8.0.4",
"@threlte/core": "^8.5.4",
"@threlte/extras": "^9.13.3",
"astro": "^6.1.4",
"embla-carousel": "^8.6.0",
"embla-carousel-auto-scroll": "^8.6.0",
"sass": "^1.98.0",
"sharp": "^0.34.5",
"svelte": "^5.55.1",
"three": "^0.182.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^9.39.4",
"@quantco/pnpm-licenses": "^2.2.3",
"@sveltejs/kit": "^2.55.0",
"@types/node": "^25.5.0",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^17.4.0",
"prettier": "3.8.0",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte-preprocess": "^6.0.3",
"typescript-eslint": "^8.57.2",
"wrangler": "^4.79.0"
},
"packageManager": "pnpm@10.32.1",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.32.1",
"onFail": "error"
}
}
}