This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
81 lines (81 loc) · 3.16 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
{
"$schema": "https://raw.githubusercontent.com/sourcegraph/sourcegraph/master/client/shared/src/schema/extension.schema.json",
"name": "code-intel-extensions",
"description": "Sourcegraph code intelligence extensions",
"private": true,
"sideEffects": false,
"publisher": "sourcegraph",
"version": "0.0.0-DEVELOPMENT",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/code-intel-extensions"
},
"scripts": {
"prettier": "prettier --write --list-different '**/*.{ts,js?(on),md,yml}'",
"prettier-check": "yarn run prettier --write=false",
"eslint": "eslint '**/*.ts?(x)'",
"build": "yarn --cwd template build",
"test": "yarn --cwd template test",
"coverage": "codecov",
"deduplicate": "yarn-deduplicate -s fewer",
"generate": "yarn -s && yarn run ts-node -P tsconfig.json ./scripts/generate.ts",
"publish": "yarn run ts-node -P tsconfig.json ./scripts/publish.ts",
"config-types": "./node_modules/.bin/dot-json template/package.json contributes.configuration | ./node_modules/.bin/json2ts --unreachableDefinitions --style.singleQuote --no-style.semi -o ./template/src/search/settings.ts && yarn prettier",
"update-graphql-schema": "curl -s https://raw.githubusercontent.com/sourcegraph/sourcegraph/5be5ab7d752c715fef5f87162cfca80df77de5ed/cmd/frontend/graphqlbackend/schema.graphql > ./schema/schema.graphql && curl -s https://raw.githubusercontent.com/sourcegraph/sourcegraph/5be5ab7d752c715fef5f87162cfca80df77de5ed/cmd/frontend/graphqlbackend/codeintel.graphql >> ./schema/schema.graphql",
"validate-graphql": "yarn run tsgql validate -p ./template/tsconfig.json --exitOnWarn"
},
"dependencies": {
"dot-json": "^1.2.2",
"fast-json-stable-stringify": "^2.1.0",
"js-base64": "^3.7.1",
"json2ts": "^0.0.7",
"lodash": "^4.17.21",
"lru-cache": "^6.0.0",
"mz": "^2.7.0",
"rxjs": "^6.6.7",
"sourcegraph": "25.7.0",
"tagged-template-noop": "^2.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@sourcegraph/eslint-config": "^0.29.0",
"@sourcegraph/extension-api-stubs": "^1.6.2",
"@sourcegraph/prettierrc": "^3.0.3",
"@sourcegraph/tsconfig": "^4.0.1",
"@types/fs-extra": "9.0.13",
"@types/js-base64": "3.0.0",
"@types/lodash": "4.14.202",
"@types/lru-cache": "5.1.1",
"@types/mocha": "10.0.0",
"@types/mock-require": "2.0.3",
"@types/mz": "2.7.8",
"@types/node": "14.18.28",
"@types/node-fetch": "3.0.2",
"@types/recursive-readdir": "2.2.1",
"@types/uuid": "8.3.4",
"@types/yargs": "17.0.10",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"fs-extra": "^10.1.0",
"graphql": "^15.5.3",
"json-schema-to-typescript": "^10.1.4",
"lnfs-cli": "^2.1.0",
"mkdirp": "^1.0.4",
"mocha": "^10.0.0",
"mock-require": "^3.0.3",
"node-fetch": "^3.2.4",
"nyc": "^15.1.0",
"parcel": "2.x",
"parcel-bundler": "^1.12.5",
"prettier": "^2.5.1",
"recursive-readdir": "^2.2.2",
"ts-graphql-plugin": "^2.1.6",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.4",
"yargs": "^17.4.1",
"yarn": "^1.22.18",
"yarn-deduplicate": "^5.0.0"
}
}