-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.33 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
83
84
85
86
87
88
89
90
91
92
{
"name": "minecraft-client",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -fr dist",
"build": "npm run clean && npm run rollup",
"rollup": "rollup -c rollup.config.mjs",
"rollup-watch": "npm run rollup -- --watch"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"example",
"typescript",
"npm",
"package",
"sample",
"boilerplate",
"starter",
"demo",
"cjs",
"esm",
"umd"
],
"author": "Codie Stella @craftycodie",
"license": "MIT",
"homepage": "https://github.com/craftycodie/js-minecraft-client",
"repository": {
"type": "git",
"url": "[email protected]:tomchen/example-typescript-package.git"
},
"bugs": {
"url": "https://github.com/tomchen/example-typescript-package/issues"
},
"dependencies": {
"@rollup/plugin-alias": "^5.0.0",
"@transcend-io/conflux": "^4.0.3",
"@types/jszip": "^3.4.1",
"@types/three": "^0.150.1",
"aes-js": "^3.1.2",
"asn1": "^0.2.6",
"axios": "^1.3.5",
"bigint-mod-arith": "^3.1.2",
"crypto": "^1.0.1",
"http-server": "^14.1.1",
"immutable": "^4.3.0",
"jszip": "^3.10.1",
"long": "^5.2.1",
"mc-chat-format": "^1.2.2",
"minimatch": "^8.0.3",
"pako": "^2.1.0",
"sha1": "^1.1.1",
"stream": "^0.0.2",
"three": "^0.151.3",
"unicode-properties": "^1.4.1",
"util": "^0.12.5"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-eslint": "^9.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"rollup": "^3.20.2",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"terser": "^5.16.8",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.9.5",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}