-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.22 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
90
91
92
93
{
"name": "vscode-expo-theme",
"displayName": "Expo Theme",
"version": "1.4.1",
"description": "Expo-inspired editor and syntax theme.",
"keywords": [
"expo"
],
"license": "MIT",
"author": "Expo",
"homepage": "https://github.com/expo/vscode-expo-theme",
"bugs": {
"url": "https://github.com/expo/vscode-expo-theme/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/vscode-expo-theme"
},
"scripts": {
"dev": "nodemon --watch ./src --exec ts-node ./src/scripts/build-themes.ts",
"build": "ts-node ./src/scripts/build-themes.ts",
"package": "vsce package",
"clean": "git clean -xdf ./build",
"lint": "eslint .",
"vscode:prepublish": "yarn clean && yarn build"
},
"dependencies": {
"@expo/styleguide-base": "^2.0.1",
"arg": "^5.0.2",
"hsl-to-hex": "^1.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.2",
"@types/vscode": "^1.96.0",
"@vscode/extension-telemetry": "^0.9.8",
"@vscode/vsce": "^2.32.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.1",
"eslint-config-universe": "^14.0.0",
"nodemon": "^3.1.9",
"ovsx": "^0.8.3",
"prettier": "^3.4.2",
"semantic-release": "^23.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"resolutions": {
"@typescript-eslint/typescript-estree": "^8.18.2"
},
"packageManager": "[email protected]",
"eslintConfig": {
"extends": "universe/node",
"env": {
"node": true
},
"ignorePatterns": [
"node_modules/**",
"build/**"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
},
"engines": {
"vscode": "*"
},
"publisher": "expo",
"icon": ".github/resources/logo.png",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Expo Dark",
"uiTheme": "vs-dark",
"path": "./build/expo-dark.json"
},
{
"label": "Expo Light",
"uiTheme": "vs",
"path": "./build/expo-light.json"
}
]
}
}