-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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": "react-liff",
"version": "2.1.0",
"private": false,
"description": "A react context provider for LIFF (LINE Front-end Framework)",
"keywords": [
"react",
"react-component",
"liff",
"line"
],
"homepage": "https://github.com/epaew/react-liff",
"repository": "[email protected]:epaew/react-liff",
"license": "MIT",
"author": "Ryo Maeda <[email protected]>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist/*",
"fix": "biome check --apply .",
"lint": "biome check .",
"lint:ci": "biome ci .",
"prepack": "npm-run-all lint test clean build",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@line/liff": ">=2.19.1 <3.0.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.2.3",
"@types/prop-types": "^15.7.3",
"@types/react": "^18.0.25",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.0.3",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@line/liff": ">=2.19.1 <3.0.0",
"prop-types": "*",
"react": ">=18.0.0 <19.0.0",
"react-dom": ">=18.0.0 <19.0.0"
},
"peerDependenciesMeta": {
"@line/liff": {
"optional": true
}
}
}