Files
australis-theme-generator/package.json
Daniel Imms dbc14884bf v0.0.20
2018-10-13 11:45:42 -07:00

31 lines
704 B
JSON

{
"name": "vscode-theme-generator",
"version": "0.0.20",
"description": "Easily generate themes for VS Code with only a few colors",
"main": "dist/index.js",
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"prestart": "tsc demo/generate.ts",
"start": "node demo/generate.js",
"prepublish": "npm run build",
"lint": "tslint src/*.ts"
},
"author": "Tyriar",
"license": "MIT",
"typescript": {
"definition": "index.d.ts"
},
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"typings": "dist/index",
"devDependencies": {
"@types/node": "^6.0.41",
"tslint": "^5.9.1",
"tslint-consistent-codestyle": "^1.13.0",
"typescript": "^2.8.3"
}
}