-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.74 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
{
"name": "squid",
"displayName": "squid",
"description": "Code using e-ink screen browser",
"version": "0.1.0",
"publisher": "egxn",
"icon": "https://user-images.githubusercontent.com/9216933/183815180-9f0bc3a6-75fc-4522-b96f-19d16ec25efe.png",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:squid.createInkServer"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "squid.createInkServer",
"title": "Create an ink server"
}
],
"title": "Squid",
"properties": {
"squid.port": {
"type": "number",
"default": 8888
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"test": "jest"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^28.1.6",
"@types/node": "14.x",
"@types/prismjs": "^1.26.0",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"glob": "^8.0.1",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-loader": "^9.2.8",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"prismjs": "^1.28.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"<rootDir>/src/**/*.(spec|test).(ts|tsx)"
]
},
"repository": "https://github.com/egxn/squid"
}