-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "@traptitech/traq",
"version": "3.20.1-1",
"description": "A client library for the traQ API.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "tsx build/index.ts && tsup",
"clean": "rimraf bin dist",
"type-check": "tsc --noEmit --allowJS --project tsconfig.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/traPtitech/node-traq.git"
},
"author": "traP",
"license": "MIT",
"bugs": {
"url": "https://github.com/traPtitech/node-traq/issues"
},
"homepage": "https://github.com/traPtitech/node-traq#readme",
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.13.5",
"@types/node": "^20.14.9",
"rimraf": "^5.0.7",
"ts-morph": "^22.0.0",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"sideEffects": false,
"engines": {
"node": ">=20.0.0"
}
}