-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (51 loc) · 1.13 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
{
"name": "@technoeren/tdk-api",
"version": "0.2.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"author": "technoeren13",
"license": "MIT",
"private": false,
"scripts": {
"start": "tsc && node src/index.js",
"dev": "nodemon dist/index.js",
"test": "tsc && node dist/test.js",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/technoeren13/tdk-api.git"
},
"homepage": "https://github.com/technoeren13/tdk-api#readmd",
"keywords": [
"tdk",
"tdk-api",
"türk dil kurumu",
"turkish dictionary"
],
"husky": {
"hooks": {
"pre-commit": "yarn format && git add ."
}
},
"devDependencies": {
"@technoeren/tdk-api": "^0.0.7",
"@types/node": "^17.0.21",
"axios": "^0.26.0",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"dependencies": {}
}