-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "squirrelsong",
"private": true,
"author": {
"name": "Artem Sapegin",
"url": "https://sapegin.me/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sapegin/squirrelsong.git"
},
"type": "module",
"scripts": {
"format": "prettier --log-level warn --write --ignore-unknown \"**/*.*\"",
"update": "node scripts/update.mjs",
"prepare-extensions": "node scripts/prepare-extensions.mjs",
"prepare-vscode": "node scripts/prepare-vscode.mjs",
"lint": "eslint . --cache --fix",
"lint:themes": "node scripts/lint.mjs",
"test": "npm run lint && npm run lint:themes"
},
"devDependencies": {
"eslint": "^9.8.0",
"eslint-config-tamia": "^9.1.10",
"prettier": "^3.3.3"
},
"dependencies": {
"adm-zip": "^0.5.14",
"css-color-names": "^1.0.1",
"glob": "^11.0.0",
"hex-rgb": "^5.0.0",
"lodash": "^4.17.21",
"rgb-hex": "^4.1.0",
"strip-json-comments": "^5.0.1",
"terminal-link": "^3.0.0"
}
}