generated from thaitype/npm-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.2 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
{
"name": "@mild-ts/azure-rest-client",
"version": "0.2.1",
"description": "Azure Rest Client Helper for TypeScript",
"main": "./dist/main.js",
"module": "./dist/main.mjs",
"types": "./dist/main.d.ts",
"files": [
"dist/**",
"src/**"
],
"scripts": {
"all": "run-s lint build",
"build": "tsup src/main.ts --dts --format esm,cjs",
"release": "npm run build && changeset publish",
"lint": "tsc --noEmit",
"test": "ava"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^18.11.18",
"ava": "^5.1.1",
"axios": "^1.3.6",
"c8": "^7.12.0",
"esbuild-register": "^3.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"tsup": "^6.6.3",
"typescript": "^5.0.2"
},
"keywords": [],
"author": "Thada Wangthammang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mild-ts/azure-rest-client.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"esbuild-register"
]
},
"dependencies": {
"@azure/identity": "^3.1.4",
"@mild-ts/rest-client": "^0.4.0"
}
}