-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 789 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 789 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
{
"name": "vscode-theme-extractor",
"version": "1.0.0",
"description": "Extract your Visual Studio Code theme to a JSON file for prismjs",
"main": "index.js",
"repository": "https://github.com/und3fined-v01d/vscode-theme-extractor",
"license": "MIT",
"private": true,
"author": {
"name": "Soham Parekh",
"email": "soham.parekh1998@gmail.com",
"url": "https://sohamp.dev"
},
"keywords": [],
"scripts": {
"start": "npx babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"json5": "^2.1.3",
"nodemon": "^2.0.4"
},
"dependencies": {
"color": "^3.1.2",
"is-equal": "^1.6.1"
}
}