-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.43 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
76
77
78
79
80
81
82
83
84
{
"$schema": "https://raw.githubusercontent.com/sourcegraph/sourcegraph/main/client/shared/src/schema/extension.schema.json",
"name": "find-replace",
"description": "",
"publisher": "sourcegraph",
"activationEvents": [
"*"
],
"wip": true,
"categories": [],
"tags": [
"campaigns"
],
"contributes": {
"actions": [
{
"id": "findReplace.startFindReplace",
"title": "Create a new find-replace campaign",
"command": "findReplace.startFindReplace",
"commandArguments": [
"${get(context, 'searchQuery')}"
],
"actionItem": {
"label": "Find-replace"
}
}
],
"menus": {
"search/results/toolbar": [
{
"action": "findReplace.startFindReplace"
}
],
"commandPalette": [
{
"action": "findReplace.startFindReplace"
}
]
},
"configuration": {}
},
"version": "0.0.0-DEVELOPMENT",
"license": "Apache-2.0",
"main": "dist/find-replace.js",
"scripts": {
"eslint": "eslint 'src/**/*.ts'",
"typecheck": "tsc -p tsconfig.json",
"build": "parcel build --out-file dist/find-replace.js src/find-replace.ts",
"symlink-package": "mkdirp dist && lnfs ./package.json ./dist/package.json",
"serve": "yarn run symlink-package && parcel serve --no-hmr --out-file dist/find-replace.js src/find-replace.ts",
"watch:typecheck": "tsc -p tsconfig.json -w",
"watch:build": "tsc -p tsconfig.dist.json -w",
"sourcegraph:prepublish": "yarn run typecheck && yarn run build",
"prettier": "prettier '**/*.{ts,md,json}' --write --list-different",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --require ts-node/register **/*.test.ts"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Edge versions",
"last 1 Safari versions"
],
"devDependencies": {
"@sourcegraph/eslint-config": "^0.20.11",
"@sourcegraph/tsconfig": "^4.0.1",
"@types/assert": "^1.5.2",
"@types/mocha": "^8.0.3",
"assert": "^2.0.0",
"eslint": "^7.11.0",
"lnfs-cli": "^2.1.0",
"mkdirp": "^1.0.4",
"mocha": "^8.2.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"sourcegraph": "^24.7.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@sourcegraph/campaigns-client": "file:../campaigns-client",
"rxjs": "^6.6.3",
"slugify": "^1.4.5",
"ts-node": "^9.0.0"
}
}