-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "raymarcher",
"version": "0.3.1",
"description": "A raymarching-based virtual world.",
"files": [
"dist"
],
"main": "./dist/raymarcher.umd.cjs",
"module": "./dist/raymarcher.js",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/my-lib.js",
"require": "./dist/my-lib.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"watch": "vite build --watch",
"build": "vite build",
"publish": "rm -rf demo && npm run build && mkdir demo && cp -r ./dist ./demo/dist && cp -r ./example ./demo/example",
"dev:spritemap": "npx audiosprite --format howler2 --export mp3 --output example/audio/sprites/spritemap example/audio/sounds/*.*"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/BtheGit/raymarcher.git"
},
"author": "Brendan Beltz",
"license": "ISC",
"bugs": {
"url": "https://github.com/BtheGit/raymarcher/issues"
},
"homepage": "https://github.com/BtheGit/raymarcher#readme",
"devDependencies": {
"vite": "^4.3.9"
},
"dependencies": {
"howler": "^2.2.3"
}
}