-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.54 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
{
"name": "threejs-offset",
"version": "0.3.1",
"description": "Offset meshes with [three.js](https://threejs.org/) library",
"main": "dist/lib/index.umd.js",
"module": "dist/lib/index.es.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/lib"
],
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.es.js",
"require": "./dist/lib/index.umd.js"
}
},
"scripts": {
"check": "biome check --write ./src/index.ts ./src/**/*.ts ./demo/*.ts",
"check:ci": "biome check ./src/**/*.ts ./demo/*.ts",
"test": "vitest --mode test --run",
"dev": "vite",
"build:demo": "vite build --mode demo",
"build:lib": "vite build",
"build": "npm run build:demo && npm run build:lib",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngyDev/threejs-offset.git"
},
"keywords": [
"three.js",
"geometry",
"3d",
"mesh",
"offset"
],
"author": "Angela Busato",
"license": "MIT",
"bugs": {
"url": "https://github.com/AngyDev/threejs-offset/issues"
},
"homepage": "https://github.com/AngyDev/threejs-offset#readme",
"engines": {
"node": ">=25"
},
"devDependencies": {
"@biomejs/biome": "2.2.7",
"@types/node": "^24.9.1",
"@types/three": "^0.180.0",
"three": "^0.180.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.2"
},
"peerDependencies": {
"three": "^0.143.0"
}
}