-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.96 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.96 KB
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
{
"name": "crebit",
"version": "1.0.0",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"umd": "./dist/index.umd.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": "github.com/ProjectOpenLaunch/Crebit",
"author": "ProjectOpenLaunch",
"license": "MIT",
"description": "The Unpkg for Minecraft",
"packageManager": "yarn@3.3.1",
"dependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-html": "^1.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@types/qs": "^6.9.7",
"axios": "^1.2.2",
"fastify": "^4.10.2",
"pino": "^8.8.0",
"pnpapi": "^0.0.0",
"qs": "^6.11.0",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"devDependencies": {
"commitizen": "^4.2.6",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.30.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "2.8.1",
"rollup": "^3.9.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"scripts": {
"prepare": "yarn rimraf dist && tsc",
"build": "yarn prepare && rollup -c",
"dev": "node dist/index.js",
"test": "jest",
"lint": "prettier --write .",
"docs": "typedoc --out docs src",
"rollup": "rollup -c"
},
"dependenciesMeta": {
"commitizen": {
"unplugged": true
},
"conventional-changelog": {
"unplugged": true
},
"conventional-changelog-cli": {
"unplugged": true
},
"cz-conventional-changelog": {
"unplugged": true
},
"ts-jest@28.0.8": {
"unplugged": true
}
},
"config": {
"commitizen": {
"path": "./.yarn/unplugged/cz-conventional-changelog"
}
}
}