-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.45 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
{
"name": "@three11/istouch",
"version": "2.0.0",
"description": "Use JS to detect touch-enabled device",
"keywords": [
"Detect touch",
"Set touch classes",
"Remove touch classes",
"Detect touch device",
"Detect touch-enabled device"
],
"homepage": "https://github.com/three11/istouch#readme",
"bugs": {
"url": "https://github.com/three11/istouch/issues"
},
"license": "MIT",
"authors": [
{
"name": "Three 11 Ltd",
"email": "hello@three-11.com",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "alexander.panayotov@gmail.com",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "scriptex.bg@gmail.com",
"role": "Developer"
}
],
"repository": {
"type": "git",
"url": "github:three11/istouch"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"copy": "cp -r dist demo",
"clean": "rm -rf dist && rm -rf demo/dist",
"build": "yarn clean && microbundle && yarn copy"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"microbundle": "0.15.1",
"typescript": "5.7.2"
},
"type": "module",
"source": "src/is-touch.ts",
"exports": {
"require": "./dist/is-touch.cjs",
"default": "./dist/is-touch.modern.js"
},
"main": "./dist/is-touch.cjs",
"types": "./dist/is-touch.d.ts",
"module": "./dist/is-touch.module.js",
"unpkg": "./dist/is-touch.umd.js"
}