-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.93 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@pnext/three-loader",
"private": false,
"version": "1.0.0",
"author": "",
"homepage": "https://github.com/pnext/three-loader#readme",
"engines": {
"node": ">=22.21.1"
},
"description": "Potree loader for ThreeJS, converted and adapted to Typescript.",
"contributors": [
"Hugo Campos <hugo.campos@pix4d.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pnext/three-loader.git"
},
"bugs": {
"url": "https://github.com/pnext/three-loader/issues"
},
"license": "MIT",
"main": "build/potree.js",
"typings": "build/declarations/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"clean": "rimraf build",
"start": "webpack --mode development --watch --progress",
"start:example": "webpack-dev-server --config webpack.config.example.js --mode development --progress",
"build": "npm run clean && webpack --mode production --progress --config webpack.config.prod.js",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier \"**/*.{ts,js}\"",
"format:write": "npm run format -- --write",
"format:check": "npm run format -- --check",
"commit": "git-cz",
"prerelease": "npm run build",
"release": "standard-version",
"prepare": "husky"
},
"peerDependencies": {
"three": "~0.160.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/cz-commitlint": "^20.1.0",
"@commitlint/types": "^20.0.0",
"@types/node": "^25.0.3",
"@types/three": "~0.160.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"babel-loader": "^10.0.0",
"circular-dependency-plugin": "^5.2.2",
"commitizen": "^4.3.1",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^9.1.7",
"inquirer": "^9.3.7",
"install": "^0.13.0",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"raw-loader": "^4.0.2",
"rimraf": "^6.0.1",
"standard-version": "^9.3.2",
"style-loader": "^4.0.0",
"three": "~0.160.0",
"ts-loader": "^9.4.2",
"typescript": "^4.6.3",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^5.0.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1",
"worker-loader": "^3.0.8"
},
"keywords": [
"three",
"threejs",
"potree",
"pointcloud",
"point cloud",
"points",
"gis",
"loader",
"3d",
"webgl",
"geo",
"gis",
"photogrammetry"
],
"overrides": {
"commitizen": {
"lodash": "^4.17.23"
}
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}