-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "just-types",
"author": "Amine Ben hammou",
"description": "A collection of handy Typescript types.",
"license": "MIT",
"version": "2.0.0-alpha.3",
"repository": "webNeat/just-types",
"homepage": "https://github.com/webNeat/just-types#just-types",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./common": "./dist/common/index.js",
"./number": "./dist/number/index.js",
"./object": "./dist/object/index.js",
"./string": "./dist/string/index.js",
"./test": "./dist/test.js",
"./tuple": "./dist/tuple/index.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "tsc --noEmit",
"build:ts": "rm -rf dist && tsc",
"build:docs": "ts-node-esm build.mts",
"build": "yarn build:ts && yarn build:docs"
},
"peerDependencies": {
"tslib": "^2.5.0",
"typescript": "^5.0.3"
},
"devDependencies": {
"tslib": "^2.5.0",
"typescript": "^5.0.3",
"@types/node": "^18.15.11",
"@types/fs-extra": "^11.0.1",
"expect-type": "^0.15.0",
"fs-extra": "^11.1.1",
"prettier": "^2.8.7",
"ts-node": "^10.9.1"
}
}