forked from IrisPro/KrpanoToolJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@krpano/js-tools",
"version": "1.1.18",
"description": "在浏览器切图和还原全景图,KrpanoTools的轻量替代品",
"author": "Rain",
"license": "MIT",
"entry": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"iife": "dist/index.iife.js",
"cjs": "dist/index.cjs.js",
"umd": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/IrisPro/KrpanoToolJS.git"
},
"scripts": {
"build": "npm run clean:dist && npm-run-all --parallel build:**",
"build:all": "rollup --config",
"clean:dist": "rimraf dist",
"build:types": "tsc --declaration --declarationMap --emitDeclarationOnly --outDir ./dist/types",
"start": "cross-env TARGET='debug' rollup --config --watch",
"watch": "rollup --config --watch",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"prepack": "npm-run-all build",
"release": "npm version patch && npm publish --access public"
},
"keywords": [
"krpano",
"makepano",
"maketiles",
"makepreview",
"threejs",
"vr看房",
"全景图",
"js切图",
"瓦片图",
"还原全景图"
],
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.10.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-live-server": "^1.0.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-web-worker-loader": "^1.3.0",
"tslib": "^1.12.0",
"typescript": "^3.9.2",
"rimraf": "^3.0.2"
},
"dependencies": {
"file-saver": "^2.0.5",
"jszip": "^3.10.0",
"jszip-utils": "^0.1.0"
}
}