-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.28 KB
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
{
"name": "null-syntax",
"displayName": "Null Syntax",
"version": "1.4.0",
"description": "A theme which fades punctuation & highlights control flow",
"publisher": "nfour",
"scripts": {
"build": "ts-node scripts/build && vsce package",
"release": "yarn build && yarn vsce publish",
"dev": "nodemon -e ts -w *.ts -x yarn build"
},
"engines": {
"vscode": "^1.22.0"
},
"devDependencies": {
"@types/color": "^3.0.1",
"color": "~3.1.2",
"eslint-config-standard-typescript-prettier": "^2.0.1",
"nodemon": "^2.0.3",
"plist": "~3.0.1",
"ts-node": "^8.8.2",
"typescript": "~3.8.3",
"vsce": "^1.85.1",
"yargs": "~15.3.1"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Null Syntax",
"uiTheme": "vs-dark",
"path": "./themes/null-syntax.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/nfour/vscode-null-syntax"
},
"__metadata": {
"id": "bfd10cd9-a0d2-476f-997a-215e09929733",
"publisherDisplayName": "nfour",
"publisherId": "969cf5b4-fef2-499a-8a3c-d6592dce22b3"
},
"eslintConfig": {
"plugins": [
"only-warn"
],
"extends": "standard-typescript-prettier",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"prettier": "eslint-config-standard-typescript-prettier/prettier"
}