aether-dice 0.1.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/LICENSE +21 -0
- package/README.md +174 -0
- package/SPEC.md +160 -0
- package/dist/aether-dice.esm.js +19565 -0
- package/dist/aether-dice.esm.js.map +1 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aether-dice",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Standalone, framework-agnostic 3D dice roller that settles each die on a caller-supplied value.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "",
|
|
8
|
+
"homepage": "https://github.com/BeastPhoenix/aether-dice#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/BeastPhoenix/aether-dice.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/BeastPhoenix/aether-dice/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"dice",
|
|
18
|
+
"3d",
|
|
19
|
+
"three.js",
|
|
20
|
+
"cannon-es",
|
|
21
|
+
"physics",
|
|
22
|
+
"ttrpg",
|
|
23
|
+
"esm"
|
|
24
|
+
],
|
|
25
|
+
"main": "./dist/aether-dice.esm.js",
|
|
26
|
+
"module": "./dist/aether-dice.esm.js",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": "./dist/aether-dice.esm.js"
|
|
30
|
+
},
|
|
31
|
+
"./assets/*": "./dist/assets/*"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md",
|
|
36
|
+
"SPEC.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
39
|
+
"sideEffects": false,
|
|
40
|
+
"scripts": {
|
|
41
|
+
"dev": "vite",
|
|
42
|
+
"build": "vite build",
|
|
43
|
+
"preview": "vite preview",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"test:watch": "vitest",
|
|
46
|
+
"check:visual": "node test/visual-check.mjs",
|
|
47
|
+
"lint": "eslint ."
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"cannon-es": "^0.20.0",
|
|
51
|
+
"three": "^0.165.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"eslint": "^9.9.0",
|
|
55
|
+
"playwright": "^1.61.1",
|
|
56
|
+
"vite": "^5.4.0",
|
|
57
|
+
"vitest": "^2.1.0"
|
|
58
|
+
}
|
|
59
|
+
}
|