-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
83 lines (83 loc) · 2.09 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@midzer/tobii",
"version": "2.7.1",
"description": "An accessible, open-source lightbox with no dependencies.",
"main": "./dist/tobii.js",
"module": "./dist/tobii.module.js",
"umd:main": "./dist/tobii.umd.js",
"unpkg": "./dist/tobii.min.js",
"source": "./src/js/index.js",
"exports": {
".": {
"browser": "./dist/tobii.module.js",
"umd": "./dist/tobii.umd.js",
"import": "./dist/tobii.modern.js",
"require": "./dist/tobii.js"
},
"./package.json": "./package.json",
"./": "./"
},
"devDependencies": {
"@eslint/compat": "1.2.4",
"cross-env": "7.0.3",
"eslint": "9.15.0",
"eslint-plugin-node": "11.1.0",
"eslint-config-standard": "17.1.0",
"microbundle": "0.15.1",
"rimraf": "4.4.1",
"sass": "1.83.0",
"standard": "17.1.2",
"stylelint": "16.12.0"
},
"overrides": {
"eslint": "9.15.0"
},
"browserslist": {
"browser": [
"last 2 versions",
"not <= 1%",
"IE >= 11"
],
"main": [
"last 2 versions",
"not <= 1%"
]
},
"scripts": {
"build": "npm run distclean && npm run build:main && npm run build:browser",
"build:main": "cross-env BROWSERSLIST_ENV=main microbundle build --raw --no-sourcemap --name Tobii",
"build:browser": "cross-env BROWSERSLIST_ENV=browser microbundle build --raw -f iife src/js/browser.js -o dist/tobii.min.js --no-sourcemap --name Tobii",
"distclean": "rimraf dist",
"clean": "rimraf dist && rimraf node_modules",
"dev": "microbundle watch --raw --format cjs",
"dev-modern": "microbundle watch --raw --format esm",
"lint": "eslint src",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git://github.com/midzer/tobii.git"
},
"files": [
"src",
"dist"
],
"engines": {
"node": ">=18"
},
"keywords": [
"lightbox",
"accessible",
"a11y",
"javascript",
"vanilla",
"scss",
"css"
],
"author": "midzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/midzer/tobii/issues"
},
"homepage": "https://midzer.github.io/tobii/demo/"
}