-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "tt",
"version": "2",
"type": "module",
"main": "index.js",
"repository": "https://github.com/brkydnc/tt.git",
"author": "Berkay Dinç <[email protected]>",
"license": "MIT",
"browser": {
"./src/common/dom.ts": "./src/common/shims/dom.ts"
},
"scripts": {
"test": "jest",
"clean": "rm -rf build/ && rm tt.xpi",
"build": "node esbuild/build.js",
"serve": "node esbuild/serve.js",
"watch": "node esbuild/watch.js"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.12.0",
"adm-zip": "^0.5.15",
"chokidar": "^3.6.0",
"esbuild": "0.23.1",
"esbuild-sass-plugin": "^3.3.1",
"jest": "^29.7.0",
"jsdom": "^24.1.1",
"open": "^10.1.0",
"postcss": "^8.4.41",
"postcss-modules": "^6.0.0",
"scss-reset": "^1.4.2",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"webextension-polyfill": "^0.12.0"
}
}