-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "three-panorama-controls",
"version": "1.1.3",
"description": "Panorama controls for three.js.",
"author": "Fawad Ali <m.fawaadali98@gmail.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/9inpachi/three-panorama-controls#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/9inpachi/three-panorama-controls.git"
},
"keywords": [
"three.js",
"three",
"panorama",
"controls",
"react",
"fiber"
],
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/9inpachi/three-panorama-controls/issues"
},
"main": "./dist/cjs/panorama-controls.js",
"module": "./dist/esm/panorama-controls.js",
"types": "./dist/types/panorama-controls.d.ts",
"exports": {
".": {
"types": "./dist/types/panorama-controls.d.ts",
"import": "./dist/esm/panorama-controls.js",
"require": "./dist/cjs/panorama-controls.js"
},
"./react": {
"types": "./dist/types/panorama-controls-react.d.ts",
"import": "./dist/esm/panorama-controls-react.js",
"require": "./dist/cjs/panorama-controls-react.js"
}
},
"scripts": {
"clean": "rm -rf ./dist",
"tsc": "tsc",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"dev": "pnpm clean && tsc --watch",
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm && pnpm build:types",
"build:cjs": "pnpm tsc --project ./tsconfig.cjs.json --outDir ./dist/cjs/ --declaration false",
"build:esm": "pnpm tsc --project ./tsconfig.esm.json --outDir ./dist/esm/ --declaration false",
"build:types": "pnpm tsc --emitDeclarationOnly true --declarationDir ./dist/types",
"release": "release-it"
},
"peerDependencies": {
"@react-three/fiber": ">= 8",
"react": ">= 18",
"three": ">= 0.160"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@react-three/fiber": "^8.17.10",
"@types/react": "^19.0.2",
"@types/three": "^0.171.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"release-it": "^17.11.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"@react-three/fiber": {
"optional": true
}
}
}