-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "@three.ez/main",
"version": "0.5.10",
"description": "Simplify three.js development, including events, drag & drop, binding, focus management, smart rendering, tweening and more.",
"author": "Andrea Gargaro <devgargaro@gmail.com>",
"license": "MIT",
"type": "module",
"module": "build/index.js",
"main": "build/index.cjs",
"types": "src/index.d.ts",
"homepage": "https://agargaro.github.io/three.ez",
"repository": "https://github.com/agargaro/three.ez",
"exports": {
".": {
"import": {
"types": "./src/index.d.ts",
"default": "./build/index.js"
},
"require": {
"types": "./src/index.d.ts",
"default": "./build/index.cjs"
}
}
},
"keywords": [
"three",
"three.js",
"threejs",
"3d",
"interaction",
"events",
"event system",
"drag and drop",
"smart rendering",
"multiple views",
"tween",
"focus management",
"binding",
"helper",
"toolkit",
"query"
],
"scripts": {
"start": "vite",
"build": "vite build && tsc --build tsconfig.build.json",
"lint": "npx eslint --fix",
"test": "vitest",
"publish-patch": "npm version patch --git-tag-version false && npm run build && cd dist && npm publish --access public",
"publish-minor": "npm version minor --git-tag-version false && npm run build && cd dist && npm publish --access public",
"publish-major": "npm version major --git-tag-version false && npm run build && cd dist && npm publish --access public"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/three": "^0.176.0",
"eslint": "^9.26.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vite-plugin-externalize-deps": "^0.9.0",
"vite-plugin-static-copy": "^3.0.0",
"vitest": "^3.1.3"
},
"peerDependencies": {
"three": ">=0.151.0"
},
"dependencies": {
"@three.ez/asset-manager": "^0.0.1"
}
}