-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.39 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
85
86
87
88
89
{
"name": "pi-base",
"version": "0.0.6",
"description": "Tools for editing the pi-base data repository",
"keywords": [
"Math",
"Topology",
"VSCode"
],
"homepage": "https://topology.pi-base.org/",
"bugs": {
"url": "https://github.com/pi-base/vscode/issues"
},
"license": "ISC",
"author": "James Dabbs <[email protected]> (https://jdabbs.com)",
"main": "./dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/pi-base/vscode.git"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"deploy": "vsce publish",
"fmt": "prettier --write 'src/**/*.ts'",
"fmt:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts' --fix",
"lint:check": "eslint 'src/**/*.ts'",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watchAll",
"vscode:prepublish": "npm run build"
},
"dependencies": {
"remark-frontmatter": "^3.0.0",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"unified": "^9.2.1",
"unist-util-visit": "^2.0.3",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.1",
"yaml-front-matter": "^4.1.1",
"yaml-language-server-parser": "^0.1.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/vscode": "^1.54.0",
"@types/yaml-front-matter": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.43.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslib": "^1.14.1",
"typescript": "^4.2.3",
"vsce": "^1.87.0",
"vscode-test": "^1.5.2"
},
"engines": {
"vscode": "^1.54.0"
},
"publisher": "pi-base",
"categories": [
"Other"
],
"displayName": "π-Base",
"activationEvents": [
"onCommand:pi-base.restart",
"onLanguage:markdown"
],
"contributes": {
"commands": {
"command": "pi-base.restart",
"title": "pi-base: Restart language server"
}
}
}