forked from Convly/ts-zen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "@strapi/ts-zen",
"version": "0.1.8",
"bugs": {
"url": "https://github.com/strapi/strapi/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/strapi/ts-zen.git"
},
"license": "MIT",
"author": {
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
}
],
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.10",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.x",
"jest": "^29.6.x"
},
"peerDependencies": {
"typescript": "^5.1.x",
"jest": "^29.6.x"
},
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"test:matchers": "jest",
"prepack": "yarn build"
},
"engines": {
"node": ">=16.0.0"
}
}