-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "r6operators",
"version": "2.10.2",
"description": "r6operators is a collection of high-quality vectorized Rainbow Six: Siege Operator icons & metadata for Node.js",
"keywords": [
"rainbow six siege",
"r6",
"R6S",
"siege",
"operator",
"icon",
"ubisoft",
"rainbow6"
],
"homepage": "https://r6operators.marcopixel.eu/",
"bugs": "https://github.com/marcopixel/r6operators/issues",
"repository": {
"type": "git",
"url": "https://github.com/marcopixel/r6operators.git"
},
"license": "MIT",
"author": "Marco Vockner <[email protected]>",
"contributors": [
"dtSniper (https://twitter.com/sniperdt)",
"Joey Foo (https://github.com/joeyfoo)",
"Lars Brix (https://github.com/LaxisB)"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "ts-node ./scripts/clean.ts",
"build": "npm run clean && ts-node ./scripts/build.ts",
"test": "jest",
"lint": "eslint **/*.{js,ts} --ignore-path .gitignore",
"format": "prettier **/* --ignore-path .gitignore --check --write",
"prepare": "husky"
},
"dependencies": {
"clsx": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"cheerio": "^1.0.0-rc.10",
"dts-bundle-generator": "^9.3.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"lint-staged": "^15.1.0",
"micromatch": "^4.0.4",
"prettier": "^3.0.3",
"rollup": "^3.29.5",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-ts": "^3.0.2",
"stringify-object": "^3.3.0",
"svgo": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.2.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^5.0.4"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.--write": "prettier --write"
}
}