-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "@stanko/tailor",
"version": "0.3.2",
"private": false,
"license": "MIT",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "esbuild docs/src/docs.ts --bundle --tsconfig=tsconfig-demo.json --servedir=docs --outdir=docs/build",
"build": "sh ./tools/build.sh",
"build:docs": "esbuild docs/src/docs.ts --bundle --tsconfig=tsconfig-demo.json --outdir=docs/build --minify --sourcemap",
"firefox:run": "sh ./tools/firefox-run.sh",
"firefox:build": "sh ./tools/firefox-build.sh",
"chrome:build": "sh ./tools/chrome-build.sh",
"lint:js": "eslint .",
"generate-icons": "node ./tools/generate-icons.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chrome-types": "^0.1.275",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"typescript": "^5.4.3",
"web-ext": "^7.11.0",
"webextension-polyfill": "^0.10.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Stanko/tailor.git"
},
"keywords": [],
"author": "Stanko",
"bugs": {
"url": "https://github.com/Stanko/tailor/issues"
},
"homepage": "https://github.com/Stanko/tailor#readme",
"files": [
"dist/",
"CHANGELOG.md"
],
"dependencies": {
"@types/webextension-polyfill": "^0.10.7"
}
}