-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
{
"name": "@rocketleagueapi/items",
"version": "3.2.16",
"description": "A collection of JSON files including all items, paints, certifications, slots, special editions and series bundled into a tree-shakable, side-effect free, no dependencies package.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint . --ext js,jsx,ts,tsx --fix",
"build": "tsc -p ./tsconfig.node.json && tsc -p ./tsconfig.browser.json",
"parse": "ts-node --project tsconfig.node.json src/parse.ts",
"sameName": "ts-node --project tsconfig.node.json src/sameName.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocketleagueapi/items.git"
},
"author": "Rocket League API",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/rocketleagueapi/items/issues"
},
"homepage": "https://github.com/rocketleagueapi/items#readme",
"devDependencies": {
"@angablue/eslint-config": "^1.4.5",
"@types/node": "^22.7.5",
"eslint": "^8.57.1",
"iconv-lite": "^0.6.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}