-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.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
{
"name": "discord-inquirer",
"version": "0.0.0",
"description": "interactive interface using discord components API",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run type-check test lint",
"test:vitest": "turbo run test --parallel",
"test:type": "turbo run type-check --parallel",
"test:lint": "turbo run lint --parallel",
"format": "turbo run format --parallel",
"release": "turbo run type-check build type-check test lint && changeset version && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elecdeer/discord-inquirer.git"
},
"author": "elecdeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/elecdeer/discord-inquirer/issues"
},
"homepage": "https://github.com/elecdeer/discord-inquirer#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rollup/plugin-typescript": "^11.1.5",
"rollup": "^4.1.4",
"rollup-plugin-copy": "^3.5.0",
"turbo": "^1.10.12",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}