-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.1 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
{
"name": "@strdstnet/stardust",
"repository": "https://github.com/strdstnet/Stardust.git",
"author": "Stardust Developers <[email protected]>",
"main": "lib/index.js",
"types": "lib/Stardust.d.ts",
"types_": "src/Stardust.d.ts",
"version": "0.0.20",
"scripts": {
"start": "nodemon",
"start:raw": "ts-node -T src/start.ts",
"start:client": "ts-node src/client/test.ts",
"start:prod": "node lib/start.js",
"test": "jest",
"clear-test-cache": "jest --clearCache",
"gb": "barrelsby --delete -d src -l below -q -S -e @types/",
"build": "rm -rf lib && tsc && cp src/Stardust.d.ts lib/ && rm -r lib/*.js lib/**/*.js && touch lib/index.js",
"prof": "npm run build:js && NODE_ENV=production node --prof lib/start.js",
"start:dev": "ts-node -T src/start.ts",
"release": "npm run version patch && git add . && git commit -m $(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g') && git push"
},
"dependencies": {
"@bwatton/logger": "^1.0.4",
"@strdst/utils.nbt": "^1.0.5",
"@strdstnet/protocol": "^1.0.2",
"@strdstnet/utils.anvil": "^1.0.11",
"@strdstnet/utils.binary": "^1.1.11",
"@strdstnet/utils.events": "^1.0.6",
"chalk": "^3.0.0",
"chokidar": "^3.5.1",
"fs-extra": "^9.1.0",
"tsee": "^1.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.12.17",
"@strdst/tsconfig": "^1.0.3",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.10",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/pbf": "^3.0.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-jest": "^26.6.3",
"barrelsby": "^2.2.0",
"eslint": "^7.24.0",
"eslint-plugin-deprecation": "^1.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}