-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 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
{
"name": "@ircam/timeside-player",
"version": "0.0.6",
"private": false,
"license": "AGPL-3.0",
"main": "./lib/timeside-player.umd.js",
"module": "./lib/timeside-player.es.js",
"exports": {
".": {
"import": "./lib/timeside-player.es.js",
"require": "./lib/timeside-player.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && yarn run lint && vite build",
"build-lib": "BUILD=lib vite build",
"serve": "vite preview",
"lint": "eslint --ext .ts,.vue,.js src/",
"prepare": "husky install"
},
"dependencies": {
"@ircam/timeside-player": "^0.0.6",
"@ircam/timeside-sdk": "^2.6.1",
"@types/d3-axis": "^3.0.1",
"@types/d3-scale": "^4.0.1",
"@types/d3-selection": "^3.0.1",
"@types/d3-shape": "^3.0.2",
"@types/web-animations-js": "^2.2.12",
"browser-update": "^3.3.30",
"d3-axis": "^3.0.0",
"d3-scale": "^4.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"vue": "^3.0.5",
"vue-router": "4"
},
"devDependencies": {
"@iconify/vue": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"@vitejs/plugin-vue": "^1.3.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.16.0",
"husky": "^8.0.0",
"less": "^4.1.1",
"lint-staged": ">=10",
"typescript": "^4.3.2",
"vite": "^2.4.4",
"vue-tsc": "^0.2.2"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"lint-staged": {
"src/*.{ts,vue,js}": "eslint --cache --fix"
}
}