-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 998 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 998 Bytes
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
{
"name": "@honeide/themes",
"version": "1.0.0",
"description": "Color themes for Hone — VSCode-compatible theme collection",
"files": [
"themes/",
"schema/"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"validate": "tsx tools/validate-theme.ts",
"import:vscode": "tsx tools/import-vscode-theme.ts",
"import:tm": "tsx tools/import-tmtheme.ts",
"preview": "tsx tools/preview-theme.ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"ajv": "^8.17.1",
"jest": "^29.7.0",
"plist": "^3.1.0",
"ts-jest": "^29.2.3",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": ["**/tests/**/*.test.ts"]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/honeide/hone-themes"
},
"keywords": ["hone", "theme", "vscode", "color-theme", "editor"]
}