-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.77 KB
/
package.json
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
{
"name": "@three.ez/main",
"version": "0.5.8",
"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": "index.js",
"main": "index.cjs",
"types": "index.d.ts",
"homepage": "https://agargaro.github.io/three.ez",
"repository": "https://github.com/agargaro/three.ez",
"exports": {
".": {
"import": "./index.js",
"require": "./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",
"clean": "npx rimraf dist",
"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.10.0",
"@three.ez/main": "^0.5.8",
"@types/three": "^0.170.0",
"eslint": "^9.14.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-plugin-static-copy": "^1.0.6",
"vitest": "^0.34.6"
},
"peerDependencies": {
"three": ">=0.151.0"
}
}