mirror of
https://github.com/Tyriar/vscode-theme-generator.git
synced 2025-12-06 17:15:43 -08:00
26 lines
545 B
JSON
26 lines
545 B
JSON
{
|
|
"name": "vscode-theme-generator",
|
|
"version": "0.0.6",
|
|
"description": "Easily generate themes for VS Code with only a few colors",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsc -w",
|
|
"prestart": "tsc demo/generate.ts",
|
|
"start": "node demo/generate.js"
|
|
},
|
|
"author": "Tyriar",
|
|
"license": "MIT",
|
|
"typescript": {
|
|
"definition": "index.d.ts"
|
|
},
|
|
"files": [
|
|
"dist/*.js",
|
|
"dist/*.d.ts"
|
|
],
|
|
"typings": "dist/index",
|
|
"devDependencies": {
|
|
"@types/node": "^6.0.41",
|
|
"typescript": "^2.0.3"
|
|
}
|
|
}
|