-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
69
70
71
{
"name": "@frontendara/amandes",
"version": "0.0.4",
"description": "A 360° media viewer for the modern web",
"license": "Apache-2.0",
"type": "module",
"files": [
"build"
],
"keywords": [
"webxr",
"360°",
"media",
"viewer",
"3d",
"360video",
"360image",
"panorama"
],
"main": "./build/marzipano.umd.js",
"module": "./build/marzipano.es.js",
"exports": {
".": {
"import": "./build/marzipano.es.js",
"require": "./build/marzipano.umd.js"
}
},
"types": "./dist/declarations/index.d.ts",
"homepage": "http://github.com/frontendara/amandes",
"repository": {
"type": "git",
"url": "https://github.com/frontendara/amandes.git"
},
"bugs": {
"url": "https://github.com/frontendara/amandes/issues"
},
"scripts": {
"dev": "vite --port=3001",
"build": "tsc && vite build",
"start:e2e": "vite --port=3333",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"vite:preview": "vite --port=3001 preview",
"check-types": "tsc --noEmit --emitDeclarationOnly false",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.cjs,.mjs",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,cjs,mjs}'"
},
"dependencies": {
"bowser": "1.9.4",
"gl-matrix": "3.4.3",
"hammerjs": "2.0.4",
"minimal-event-emitter": "1.0.0"
},
"devDependencies": {
"@playwright/test": "^1.19.0",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"c8": "7.11.0",
"eslint": "8.12.0",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "2.55.0",
"jsdoc": "3.6.10",
"prettier": "^2.6.1",
"sinon": "9.2.4",
"typescript": "4.6.2",
"vite": "2.9.1",
"vitest": "0.8.1"
}
}