-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.29 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
{
"name": "pulseplot",
"version": "1.0.10",
"description": "Pulse data viewer JS library",
"keywords": [
"pulse",
"canvas",
"plot",
"sdr"
],
"homepage": "https://github.com/triq-org/pulseplot-js#readme",
"bugs": "https://github.com/triq-org/pulseplot-js/issues",
"license": "GPL-2.0-or-later",
"author": "Christian W. Zuckschwerdt <[email protected]>",
"repository": "github:triq-org/pulseplot-js",
"type": "module",
"main": "./dist/pulseplot.umd.cjs",
"module": "./dist/pulseplot.js",
"exports": {
".": {
"import": "./dist/pulseplot.js",
"require": "./dist/pulseplot.umd.cjs",
"style": "./lib/styles.css"
},
"./lib/": "./lib/"
},
"files": [
"dist",
"lib"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint lib --ext .js"
},
"dependencies": {},
"devDependencies": {
"eslint": "^8.0.0",
"vite": "^3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}