-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "fib-typify",
"version": "0.11.6",
"description": "just write fibjs with typescript : )",
"main": "./lib",
"types": "typings/index.d.ts",
"bin": {
"ftsc": "./bin/ftsc.js",
"fwatch": "./bin/fwatch.js",
"fib-typify": "./bin/fib-typify.js",
"typify": "./bin/fib-typify.js"
},
"files": [
"bin",
"core",
"lib",
"typings",
"tsconfig.dft.json",
"tsconfig.json"
],
"scripts": {
"build": "fibjs ./bin/ftsc.js src/* -p tsconfig.bootstrap.json --outDir ./lib",
"bootstrap": "fibjs ./scripts/bootstrap",
"test": "fibjs test/index.js",
"ci": "npm run build && npm run test",
"ts-intf": "fibjs test/spec.ts-intf.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richardo2016/fib-typify.git"
},
"keywords": [
"fibjs",
"typescript"
],
"author": "richardo2016 <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/richardo2016/fib-typify/issues"
},
"homepage": "https://github.com/richardo2016/fib-typify#readme",
"dependencies": {
"@fibjs/builtin-modules": "^0.1.1",
"@fibjs/fs-readdir-recursive": "^1.0.2",
"@fibjs/rmdirr": "^2.0.0",
"@fxjs/cli": "^0.1.0",
"micromatch": "^4.0.2",
"source-map-support": "^0.5.12",
"typescript": ">= 4.1 <= 4.9"
},
"ci": {
"type": "actions",
"os": [
"windows-2019",
"ubuntu-20.04",
"macos-11",
"macos-14"
],
"node_version": 18,
"version": [
"0.34.0",
"0.35.0",
"0.36.0",
"0.37.0"
]
},
"devDependencies": {
"@fibjs/ci": "^2.7.1",
"@fibjs/types": "^0.33.15",
"@types/react": "~16.9",
"react": "^16.9.0",
"ts-expect": "^1.3.0"
},
"engines": {
"fibjs": ">=0.27.0"
}
}