-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.26 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
{
"name": "vimmatic",
"description": "vimmatic",
"version": "0.8.0",
"scripts": {
"start": "NODE_ENV=development nodemon --watch ./src --ext js,jsx,ts,tsx,css,html,json script/build.mjs",
"clean": "rm -rf ./dist",
"prebuild": "pnpm clean",
"build": "node script/build.mjs",
"prepackage": "pnpm build",
"package": "node script/package.mjs",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"type-checks": "tsc --noEmit",
"test": "vitest",
"test:e2e": "playwright test --browser=firefox --timeout=20000 --workers=1 --retries=3 ./e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ueokande/vimmatic.git"
},
"author": "Shin'ya Ueoka",
"license": "MIT",
"bugs": {
"url": "https://github.com/ueokande/vimmatic/issues"
},
"homepage": "https://github.com/ueokande/vimmatic",
"dependencies": {
"@abraham/reflection": "^0.12.0",
"inversify": "^6.0.2",
"inversify-binding-decorators": "^4.0.0",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tslib": "^2.6.2",
"typescript": "5.3.3",
"zod": "^3.22.2"
},
"devDependencies": {
"@playwright/test": "1.40.1",
"@stylexjs/dev-runtime": "^0.5.1",
"@stylexjs/esbuild-plugin": "^0.5.1",
"@stylexjs/eslint-plugin": "^0.5.1",
"@stylexjs/stylex": "^0.5.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/chrome": "^0.0.233",
"@types/node": "^20.6.0",
"@types/prismjs": "^1.26.1",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"esbuild": "^0.20.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^4.23.2",
"jsdom": "^24.0.0",
"jszip": "^3.7.0",
"nodemon": "^2.0.22",
"playwright-webextext": "^0.0.4",
"prettier": "3.1.1",
"prettier-eslint": "16.2.0",
"react-test-renderer": "18.2.0",
"vitest": "^1.6.0",
"webext-agent": "^0.2.0"
},
"engines": {
"node": "20.1.0"
},
"packageManager": "[email protected]"
}