-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
{
"name": "three.phenomenon",
"version": "1.2.0",
"description": "A tiny wrapper around three.js built for high-performance WebGL experiences.",
"source": "src/index.ts",
"main": "dist/three.phenomenon.mjs",
"unpkg": "dist/three.phenomenon.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run copy && http-server demo --silent & $npm_execpath run watch",
"copy": "npm run copy:three && npm run copy:uot",
"copy:three": "cp node_modules/three/build/three.min.js demo/three.min.js",
"copy:uot": "cp node_modules/uot/dist/uot.umd.js demo/uot.umd.js",
"watch": "microbundle watch --format umd --entry demo/src/index.js --output demo/dist/bundle.js",
"build": "rm -rf dist && microbundle --name Phenomenon --format es,umd --sourcemap false",
"prepare": "$npm_execpath run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaneenige/three.phenomenon.git"
},
"author": {
"name": "Colin van Eenige",
"email": "[email protected]",
"url": "https://use-the-platform.com"
},
"files": [
"src",
"dist"
],
"keywords": [
"webgl",
"instances",
"particles"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"http-server": "^0.11.1",
"microbundle": "^0.11.0"
},
"dependencies": {
"three": "^0.104.0",
"uot": "^1.3.0"
}
}