-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "ffxiv-textcommand-data",
"version": "0.1.2",
"description": "Provide FFXIV Text Command Data from NPM Package",
"keywords": [
"ffxiv",
"final-fantasy-xiv",
"text-command",
"macro",
"dataset"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENCE",
"README.md"
],
"scripts": {
"build": "yarn tsup --minify",
"dev": "yarn tsup --sourcemap",
"tsup": "tsup src/index.ts --dts --format cjs,esm --clean --loader \".json=copy\"",
"fetch-data": "tsx scripts/fetch-data.ts",
"test": "yarn test:text",
"test:text": "nyc --reporter=text mocha ./__tests__",
"test:html": "nyc --reporter=html mocha ./__tests__",
"test:lcov": "nyc --reporter=lcov mocha ./__tests__",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"format": "prettier --write src/**/*.ts __tests__/**/*.ts scripts/**/*.ts ./*.{md,json}"
},
"author": {
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com",
"url": "https://github.com/MaikoTan"
},
"homepage": "https://github.com/AwesomeHamster/ffxiv-textcommand-data",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/ffxiv-textcommand-data.git"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/ffxiv-textcommand-data/issues"
},
"prettier": "@hamster-bot/prettier-config",
"devDependencies": {
"@fast-csv/parse": "^4.3.6",
"@hamster-bot/eslint-config": "*",
"@hamster-bot/prettier-config": "*",
"@hamster-bot/tsconfig": "^0.0.2",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.11",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"axios": "^1.1.3",
"chai": "^4.3.6",
"chai-each": "^0.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.22.0",
"eslint-import-resolver-typescript": "^3.5.0",
"fast-glob": "^3.2.11",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.2.2"
},
"packageManager": "yarn@3.2.1",
"dependencies": {
"fastest-levenshtein": "^1.0.16"
}
}