-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1021 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
36
37
38
39
40
41
{
"name": "write-ts",
"description": "This package is a wrapper for typescript compiler to make code generation easy",
"version": "0.0.5",
"main": "dist/index.js",
"types": "dist/typings/index.d.ts",
"scripts": {
"build": "webpack",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"node-polyfill-webpack-plugin": "^2.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-polyfill": "^3.8.2",
"typescript": "^5.0.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RezaRostamiNikoo/write-ts"
},
"keywords": [
"typescript",
"generator",
"code generator"
],
"author": "Reza Rostaminikoo",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/RezaRostamiNikoo/write-ts/issues"
},
"homepage": "https://github.com/RezaRostamiNikoo/write-ts/blob/master/README.md",
"files": [
"package.json",
"dist"
]
}