-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 998 Bytes
/
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
{
"name": "@suyama-daichi/sample-types",
"version": "0.0.1",
"description": "サーバー側、クライアント側で共通利用する型定義パッケージです。",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Suyama-Daichi/types-template.git"
},
"author": "suyama-daichi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Suyama-Daichi/types-template/issues"
},
"homepage": "https://github.com/Suyama-Daichi/types-template#readme",
"devDependencies": {
"@types/validator": "^13.7.3",
"prettier": "^2.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.3"
},
"types": "./index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/suyama-daichi"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2"
}
}