-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
39
40
41
42
43
44
45
46
{
"name": "@wathhr/create-theme",
"author": "wathhr",
"version": "0.0.1",
"description": "A template for creating Discord themes.",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "node dist/bin.js",
"build": "node scripts/build.js",
"installNodeModules": "./scripts/runInAll.ps1 install",
"updateNodeModules": "./scripts/runInAll.ps1 update",
"removeNodeModules": "./scripts/runInAll.ps1 uninstall",
"schema": "ts-json-schema-generator --path src/types.d.ts --type ThemeConfig -f tsconfig.json > dist/schema.json",
"prepublish": "npm run installNodeModules && npm run build && npm run schema && npm run removeNodeModules"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/node": "~18.18.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"esbuild": "^0.19.4",
"eslint": "^8.51.0",
"ts-json-schema-generator": "^1.3.0"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"command-exists": "^1.2.9",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.1.1",
"ts-deepmerge": "^6.2.0"
},
"bin": "dist/bin.js",
"main": "dist/bin.js",
"files": [
"dist",
"templates"
],
"keywords": [
"betterdiscord",
"discord",
"replugged",
"theme"
]
}