-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.09 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.09 KB
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
{
"name": "farming-simulator-types",
"description": "Helper functions and types for your Farming Simulator dedicated server API",
"version": "3.0.0",
"scripts": {
"build": "pnpm lint && tsc && pnpm wrap",
"clean": "rimraf --glob {2019,2022,2025,types}/**/*.{js,mjs,d.ts,*map}",
"esm:2019": "gen-esm-wrapper ./2019/index.js ./2019/index.mjs",
"esm:2022": "gen-esm-wrapper ./2022/index.js ./2022/index.mjs",
"esm:2025": "gen-esm-wrapper ./2025/index.js ./2025/index.mjs",
"esm:types": "gen-esm-wrapper ./types/index.js ./types/index.mjs",
"wrap": "run-p esm:*",
"lint:2019": "eslint ./2019",
"lint:2022": "eslint ./2022",
"lint:2025": "eslint ./2025",
"lint:types": "eslint ./types",
"lint": "run-p lint:*",
"release": "pnpm build && changeset publish"
},
"keywords": [
"farming simulator",
"fs25",
"fs22",
"fs19",
"farming simulator api",
"farming simulator types"
],
"author": "TAEMBO",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TAEMBO/farming-simulator-types.git"
},
"exports": {
"./2019": {
"types": "./2019/index.d.ts",
"import": "./2019/index.mjs",
"require": "./2019/index.js"
},
"./2022": {
"types": "./2022/index.d.ts",
"import": "./2022/index.mjs",
"require": "./2022/index.js"
},
"./2025": {
"types": "./2025/index.d.ts",
"import": "./2025/index.mjs",
"require": "./2025/index.js"
}
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"gen-esm-wrapper": "^1.1.3",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.7",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@9.12.2+sha256.2ef6e547b0b07d841d605240dce4d635677831148cd30f6d564b8f4f928f73d2"
}