-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "chart-preview",
"version": "1.3.0",
"author": "Geo",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"sideEffects": [
"./dist/index.mjs",
"./dist/index.js"
],
"description": "A 3D chart preview player for rhythm games like Clone Hero. Renders chart files as an interactive video-like preview using THREE.js.",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "npm run build && changeset publish",
"dev": "vite dev",
"lint": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Geomitron/chart-preview.git"
},
"bugs": {
"url": "https://github.com/Geomitron/chart-preview/issues"
},
"homepage": "https://github.com/Geomitron/chart-preview#readme",
"keywords": [
"clone-hero",
"chart",
"preview",
"rhythm-game",
"three.js",
"3d",
"visualization"
],
"dependencies": {
"eventemitter3": "^5.0.1",
"parse-sng": "^4.0.3",
"scan-chart": "^7.0.1",
"three": "^0.170.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/three": "^0.170.0",
"tsup": "^6.7.0",
"typescript": "^5.9.2",
"vite": "^6.1.0"
}
}