-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.83 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
{
"name": "tm-text",
"version": "1.1.0",
"description": "Trackmania and Maniaplanet text parser and formatter",
"author": "Patrick Rupp",
"license": "MIT",
"type": "module",
"module": "./dist/mjs/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"./dist"
],
"scripts": {
"dev": "tsc -p ./conf/tsconfig-mjs.json --watch",
"build": "rm -rf ./dist/* && yarn build:cjs && yarn build:mjs && bash ./scripts/create-package-files.sh",
"build:cjs": "tsc -p ./conf/tsconfig-cjs.json",
"build:mjs": "tsc -p ./conf/tsconfig-mjs.json",
"type-check": "tsc --noEmit",
"lint": "eslint . --config ./conf/eslint.config.cjs --ignore-path .gitignore --fix",
"test": "jest --config ./conf/jest.config.cjs",
"prepack": "yarn build",
"prepublishOnly": "yarn type-check && yarn lint && yarn test"
},
"devDependencies": {
"@types/babel__core": "7.20.5",
"@types/jest": "29.5.13",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"canvas": "2.11.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"homepage": "https://github.com/Brainshaker95/tm-text",
"repository": {
"type": "git",
"url": "git+https://github.com/Brainshaker95/tm-text.git"
},
"bugs": {
"url": "https://github.com/Brainshaker95/tm-text/issues"
},
"keywords": [
"formatter",
"gbx",
"maniaplanet",
"nadeo",
"parser",
"trackmania"
]
}