forked from zaida04/guilded.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.26 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
{
"name": "@guildedjs/main",
"private": true,
"version": "0.0.0",
"description": "Overarching repository for the Guilded.JS repository",
"author": "Zaid \"Nico\" <[email protected]>",
"scripts": {
"build": "pnpm --filter=!docs recursive run build",
"build:typecheck": "pnpm --filter=!docs recursive run build:typecheck",
"lint": "pnpm recursive --no-bail run lint",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --ignore-path .config/.prettierignore --config .config/.prettierrc.json --write **/*.{ts,js,json,yml,yaml,md}",
"prettier:check": "prettier --ignore-path .config/.prettierignore --config .config/.prettierrc.json --check **/*.{ts,js,json,yml,yaml,md}",
"changeset": "changeset",
"changeset:version": "changeset version",
"docs": "typedoc && cd docs && find . -type f -name \"*.html\" -exec sed -i'' -e 's/__namedParameters/options/g' {} +",
"prepublishOnly": "pnpm run lint && pnpm recursive run prepublishOnly",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "18.16.12",
"dotenv": "16.0.3",
"eslint": "8.40.0",
"eslint-config-neon": "0.1.47",
"gen-esm-wrapper": "1.1.3",
"husky": "7.0.4",
"lint-staged": "13.2.2",
"nodemon": "^2.0.22",
"pnpm": "8.5.1",
"prettier": "2.8.8",
"rimraf": "5.0.1",
"ts-node": "10.9.1",
"typedoc": "0.24.7",
"typescript": "5.0.4"
},
"contributors": [
{
"name": "Zaid \"Nico\"",
"email": "[email protected]",
"url": "https://github.com/zaida04"
},
{
"name": "Skillz4Killz",
"email": "[email protected]",
"url": "https://github.com/Skillz4Killz"
},
{
"name": "Uhuh \"Dylan\"",
"email": "[email protected]",
"url": "https://github.com/uhuh"
},
{
"name": "DaStormer",
"email": "[email protected]",
"url": "https://github.com/DaStormer"
}
],
"engines": {
"npm": "only-allow pnpm",
"node": ">= 16.0.0"
}
}