-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "gendustry-bee-lib",
"version": "0.0.38",
"description": "TypeScript library for Gendustry custom bees",
"main": "dist/gendustry-bee-lib.cjs",
"module": "dist/gendustry-bee-lib.mjs",
"types": "dist/gendustry-bee-lib.d.ts",
"exports": {
".": {
"import": "./dist/gendustry-bee-lib.mjs",
"require": "./dist/gendustry-bee-lib.cjs"
}
},
"keywords": [
"minecraft",
"feed the beast",
"modded",
"forestry",
"bees",
"gendustry",
"custom"
],
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chronoDave/gendustry-bee-lib.git"
},
"author": "Chronocide",
"license": "GPL-3.0",
"engines": {
"node": ">10.12.0"
},
"scripts": {
"lint": "eslint src",
"build": "rollup -c",
"test": "tsc && tape build/**/*.spec.js",
"docs": "typedoc src/index.ts",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-esbuild": "^4.10.3",
"tape": "^5.7.5",
"typedoc": "^0.25.12",
"typescript": "^4.9.5"
}
}