-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "tab-command-p",
"version": "1.0.0",
"description": "a command palette for working with tabs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack --config webpack.config.js",
"build:watch": "npx webpack --config webpack.config.js --watch",
"clean": "rm -rf dist && rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/altintx/tab-command-palette-extension.git"
},
"author": "Brian Bosh",
"license": "ISC",
"bugs": {
"url": "https://github.com/altintx/tab-command-palette-extension/issues"
},
"homepage": "https://github.com/altintx/tab-command-palette-extension#readme",
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/lunr": "^2.3.7",
"@types/uuid": "^10.0.0",
"copy-webpack-plugin": "^12.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"lunr": "^2.3.9",
"uuid": "^10.0.0"
}
}