-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.07 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
50
51
52
{
"name": "t3d-pano",
"version": "0.2.0",
"description": "Panorama for t3d.",
"type": "module",
"main": "./build/t3d.pano.js",
"module": "./build/t3d.pano.module.js",
"repository": {
"type": "git",
"url": "https://github.com/uinosoft/t3d-pano"
},
"files": [
"build/t3d.pano.js",
"build/t3d.pano.min.js",
"build/t3d.pano.module.js",
"LICENSE",
"package.json",
"README.md",
"src"
],
"keywords": [
"panorama",
"t3d",
"javascript",
"3d",
"webgl",
"webgl2",
"canvas",
"html5"
],
"author": "uino",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.0",
"eslint": "^8.24.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.30.0",
"rollup": "^4.22.5"
},
"peerDependencies": {
"t3d": "^0.3.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -w -c",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
}
}