-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
37 lines (37 loc) · 1.28 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
{
"name": "n8ao",
"version": "1.9.5",
"description": "An efficient and visually pleasing implementation of SSAO with an emphasis on temporal stability and artist control.",
"main": "dist/N8AO.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf .parcel-cache && parcel build src/N8AOPass.js && cp dist/N8AO.js example/N8AO.js && cp dist/N8AO.js.map example/N8AO.js.map && cp dist/N8AO.js example_postprocessing/N8AO.js && cp dist/N8AO.js.map example_postprocessing/N8AO.js.map",
"dev": "nodemon --watch src --ext .js --exec 'npm run build' & nodemon dev-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/N8python/n8ao.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/N8python/n8ao/issues"
},
"homepage": "https://github.com/N8python/n8ao#readme",
"targets": {
"main": {}
},
"peerDependencies": {
"postprocessing": ">=6.30.0",
"three": ">=0.137"
},
"type": "module",
"devDependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"live-server": "^1.1.0",
"nodemon": "^3.1.0",
"parcel": "^2.8.3",
"servez": "^1.14.2"
}
}