-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 843 Bytes
/
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
{
"name": "parallax-scene-js",
"version": "2.0.0",
"private": true,
"description": "Raw WebGL parallax scenes with 1 draw call.",
"author": "Yunus Bayraktaroglu",
"repository": "github:yunusbayraktaroglu/parallax-scene-js",
"bugs": "https://github.com/yunusbayraktaroglu/parallax-scene-js/issues",
"license": "MIT",
"keywords": [
"parallax",
"webgl"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.ts\"",
"lint-fix": "eslint \"src/**/*.ts\" --fix",
"release": "node node.versioning.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"terser": "^5.16.8",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-glsl": "^1.1.2"
}
}