@polarfront-lab/ionian 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/index.cjs.js +7 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +88 -0
- package/dist/index.es.js +3479 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.iife.js +7 -0
- package/dist/index.iife.js.map +1 -0
- package/package.json +83 -0
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@polarfront-lab/ionian",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "ThreeJS Collection Set",
|
|
5
|
+
"main": "./dist/index.umd.js",
|
|
6
|
+
"module": "./dist/index.es.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.es.js",
|
|
14
|
+
"require": "./dist/index.umd.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"type": "module",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "tsc && vite --watch",
|
|
20
|
+
"start": "vite --host --open",
|
|
21
|
+
"build": "tsc && vite build",
|
|
22
|
+
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
|
|
23
|
+
"test": "jest",
|
|
24
|
+
"prepare": "husky",
|
|
25
|
+
"lint:scripts": "eslint ./src --ext .ts",
|
|
26
|
+
"fmt": "prettier --write --list-different ."
|
|
27
|
+
},
|
|
28
|
+
"release": "semantic-release",
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"registry": "https://registry.npmjs.org/",
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/polarfront-lab/ionian.git"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"threejs",
|
|
39
|
+
"particles",
|
|
40
|
+
"simulation"
|
|
41
|
+
],
|
|
42
|
+
"author": "Seunghyun Bae <state303@dsub.io> (https://echovisionlab.com)",
|
|
43
|
+
"license": "ISC",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/polarfront-lab/ionian/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/polarfront-lab/ionian#readme",
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"comlink": "^4.4.2",
|
|
50
|
+
"generic-pool": "^3.9.0",
|
|
51
|
+
"mitt": "^3.0.1",
|
|
52
|
+
"three": "^0.173.0",
|
|
53
|
+
"three-stdlib": "^2.35.13"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@commitlint/cli": "^19.7.1",
|
|
57
|
+
"@commitlint/config-angular": "^19.7.1",
|
|
58
|
+
"@commitlint/config-conventional": "^19.7.1",
|
|
59
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
|
|
60
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
61
|
+
"@semantic-release/exec": "^7.0.3",
|
|
62
|
+
"@semantic-release/git": "^10.0.1",
|
|
63
|
+
"@semantic-release/github": "^11.0.1",
|
|
64
|
+
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
65
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
66
|
+
"@types/jest": "^29.5.14",
|
|
67
|
+
"@types/node": "^22.13.4",
|
|
68
|
+
"@types/three": "^0.173.0",
|
|
69
|
+
"esbuild-plugin-copy": "^2.1.1",
|
|
70
|
+
"eslint": "^9.20.1",
|
|
71
|
+
"eslint-config-prettier": "^10.0.1",
|
|
72
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
73
|
+
"husky": "^9.1.7",
|
|
74
|
+
"jest": "^29.7.0",
|
|
75
|
+
"terser": "^5.39.0",
|
|
76
|
+
"ts-jest": "^29.2.5",
|
|
77
|
+
"ts-node": "^10.9.2",
|
|
78
|
+
"typescript": "^5.7.3",
|
|
79
|
+
"vite": "^6.1.0",
|
|
80
|
+
"vite-plugin-dts": "^4.5.0",
|
|
81
|
+
"vite-plugin-node-polyfills": "^0.23.0"
|
|
82
|
+
}
|
|
83
|
+
}
|