-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.79 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.79 KB
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
{
"name": "pointeract",
"version": "1.1.2",
"description": "A 3KB, tree-shakable, TypeScript-native human interaction library for robust tap/pan/zoom gestures — runtime-flexible and extensible.",
"keywords": [
"frontend",
"gesture-detection",
"lightweight",
"pan-zoom",
"typescript"
],
"homepage": "https://pointeract.consensia.cc",
"bugs": {
"url": "https://github.com/hesprs/pointeract/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Hēsperus",
"email": "hesprs@outlook.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hesprs/pointeract.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/index.js",
"jsdelivr": "./dist/index.js",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "vite build && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"test": "vitest run",
"lint": "oxlint --type-aware --fix && oxfmt",
"test:coverage": "vitest run --coverage",
"check": "vue-tsc && oxfmt --check && oxlint --type-aware",
"dev": "vite",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^4.0.18",
"happy-dom": "^20.7.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"oxlint-tsgolint": "^0.15.0",
"terser": "^5.46.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitepress": "2.0.0-alpha.16",
"vitepress-plugin-group-icons": "^1.7.1",
"vitepress-theme-trito": "^1.0.6",
"vitest": "^4.0.18",
"vue": "^3.5.29",
"vue-tsc": "^3.2.5"
},
"packageManager": "pnpm@10.29.3"
}