forked from geoffreytools/free-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "free-types",
"version": "0.12.0",
"description": "A type-level library enabling the creation and the manipulation of type constructors which are detached from their type parameters.",
"keywords:": [
"higher kinded type",
"type constructor",
"typescript"
],
"types": "./index.d.ts",
"main": "./index.js",
"files": [
"./core/**/*",
"./essential/**/*",
"./experimental/**/*",
"./utility-types/**/*",
"./index.js",
"./index.d.ts",
"./TypesMap.js",
"./TypesMap.d.ts"
],
"author": "Geoffrey Gourdet",
"repository": {
"type": "git",
"url": "https://github.com/geoffreyTools/free-types"
},
"license": "ICS",
"devDependencies": {
"foo": "github:geoffreytools/foo",
"ts-spec": "^1.3.2",
"ts-trace": "github:geoffreytools/ts-trace",
"typescript": "^4.9.4"
},
"scripts": {
"test": "npm run build && tsc",
"test watch": "tsc --watch",
"build": "tsc -p ./tsconfig-build.json",
"build watch": "tsc -p ./tsconfig-build.json --watch",
"trace": "bash ./node_modules/ts-trace/ts-trace.sh -i ./tsconfig-trace"
},
"dependencies": {
"free-types-core": "^0.8.4"
}
}