-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 769 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 769 Bytes
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
{
"name": "@codedev168/three-mini-site",
"version": "1.0.0",
"description": "A tiny helper to bootstrap a small three.js mini site (scene, camera, renderer, and a demo cube).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "vitest",
"lint": "echo \"no linter configured\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"threejs",
"three",
"mini",
"site",
"webgl"
],
"author": "codedev168",
"license": "MIT",
"devDependencies": {
"typescript": "^5.2.2",
"vitest": "^1.0.0",
"@types/node": "^20.0.0"
},
"peerDependencies": {
"three": "*"
},
"type": "module"
}