-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.96 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
{
"name": "r6data",
"version": "0.0.0-alpha.9",
"author": "Daniel Werg",
"description": "Operators, weapons, seasons, maps, gadgets and attachments data for Rainbow Six Siege",
"license": "MIT",
"repository": "danielwerg/r6data",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist && npm run lint-tsc && npm run lint && npm run spell && npm run svg2png",
"build": "vite build",
"build:prepare": "path-exists ./dist || npm run build",
"prepublishOnly": "npm run build",
"svg2png": "tsx scripts/svg2png.ts",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"lint-tsc": "tsc --noEmit",
"lint": "eslint src scripts",
"lint:fix": "eslint src scripts --fix",
"spell": "cspell --show-context \"**/*.md\"",
"prepare": "npm run build:prepare"
},
"prettier": "@danielwerg/prettier-config",
"dependencies": {
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@danielwerg/eslint-config": "^1.0.0",
"@danielwerg/prettier-config": "^1.0.0",
"@danielwerg/tsconfig": "^0.1.0",
"@prettier/plugin-xml": "^2.2.0",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cspell": "^8.8.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"path-exists-cli": "^2.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.7",
"sharp": "^0.33.4",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vite": "^5.4.8",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-svgo": "^1.4.0"
},
"files": [
"dist"
],
"keywords": [
"assets",
"svg",
"icons",
"ubisoft",
"rainbow",
"six",
"siege",
"rainbowsixsiege",
"rainbow6",
"rainbow6siege",
"r6s"
]
}