-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.11 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.11 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
{
"name": "@newkrok/three-particles",
"version": "3.0.0",
"type": "module",
"description": "Three.js-based high-performance particle system library designed for creating visually stunning particle effects with ease. Perfect for game developers and 3D applications.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"webgpu.d.ts",
"README.md",
"LICENSE",
"llms.txt",
"llms-full.txt"
],
"llms": "https://newkrok.github.io/three-particles/llms.txt",
"llmsFull": "https://newkrok.github.io/three-particles/llms-full.txt",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./webgpu": {
"import": "./dist/webgpu.js",
"types": "./webgpu.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/NewKrok/three-particles.git"
},
"keywords": [
"three",
"three.js",
"particles",
"particle system",
"webgl",
"3d",
"visual effects",
"game development",
"3d applications",
"high performance",
"javascript",
"typescript",
"three-particles",
"threejs effects"
],
"author": "Istvan Krisztian Somoracz",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewKrok/three-particles/issues"
},
"homepage": "https://github.com/NewKrok/three-particles#readme",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src",
"benchmark": "npm run build && node --experimental-vm-modules benchmarks/run.js",
"benchmark:json": "npm run build && node --experimental-vm-modules benchmarks/run.js --json",
"benchmark:compare": "node --experimental-vm-modules benchmarks/run.js --compare",
"benchmark:save-baseline": "npm run benchmark:json > benchmarks/baseline.json",
"build:examples": "tsup && webpack --config webpack.docs.config.js",
"examples:dev": "npm run build:examples && npx http-server examples -p 8081 -o",
"prepare": "husky"
},
"dependencies": {
"@newkrok/three-utils": "^2.0.2",
"easing-functions": "1.3.0",
"three-noise": "1.1.2"
},
"peerDependencies": {
"three": "^0.182.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"babel-jest": "^30.3.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^30.3.0",
"madge": "^8.0.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
}
}