-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
{
"name": "@lycorp-jp/tappy",
"version": "0.2.3",
"description": "Analyze the sizes of buttons, links, and other elements on web pages, and output the tap success rate.",
"repository": {
"type": "git",
"url": "git+https://github.com/yahoojapan/tappy.git"
},
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./adapters": {
"import": "./dist/adapters/index.js",
"types": "./dist/adapters/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm clean && tsc && cp -r src/browser/ dist/browser/",
"clean": "rimraf dist",
"lint": "biome check",
"test": "vitest run"
},
"dependencies": {
"mathjs": "^15.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"puppeteer": "^24.41.0",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"puppeteer": "^24.0.0"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
}
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}