-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "wpilgenerator",
"description": "A custom generator to produce and publish list of icons to the vscode-icons wiki",
"version": "0.12.0",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Jimi (Dimitris) Charalampidis"
},
"repository": {
"type": "git",
"url": "https://github.com/vscode-icons/wpilgenerator"
},
"bugs": {
"url": "https://github.com/vscode-icons/wpilgenerator/issues"
},
"engines": {
"node": ">=16.*"
},
"main": "lib/wpilgen.js",
"bin": {
"wpilgen": "lib/wpilgen.js"
},
"files": [
"lib"
],
"scripts": {
"reinstall": "rimraf ./package-lock.json ./node_modules && npm i",
"cleanup": "rimraf ./lib",
"precompile:dev": "npm run lint",
"compile:dev": "npm run compile -- -p tsconfig.dev.json",
"precompile": "npm run cleanup",
"compile": "tsc",
"compile:w": "npm run compile -- -w",
"lint": "eslint --ext .ts .",
"prebundle": "npm run cleanup",
"bundle": "rollup -c --bundleConfigAsCjs",
"prewpilgen": "npm run lint && npm run compile",
"wpilgen": "node ./lib/cli.js"
},
"dependencies": {
"simple-git": "^3.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "16",
"@types/yargs": "~17.0.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"builtin-modules": "^3.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.29.4",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"typescript": "^5.3.3"
}
}